1 / 17

CS3L: Introduction to Symbolic Programming

CS3L: Introduction to Symbolic Programming. Summer 2008 Colleen Lewis colleenL@berkeley.edu. Lecture 16: Let and Lambda. Today. Homework Mon: Mini-project 2 due Thursday at 11:59 pm let lambda. Treating functions as things. “define” associates a name with a value

lyre
Download Presentation

CS3L: Introduction to Symbolic Programming

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. CS3L: Introduction to Symbolic Programming Summer 2008 Colleen Lewis colleenL@berkeley.edu Lecture 16: Let and Lambda

  2. Today • Homework • Mon: Mini-project 2 due Thursday at 11:59 pm • let • lambda

  3. Treating functions as things “define” associates a name with a value The usual form associates a name with a object that is a function (define (square x) (* x x)) (define (pi) 3.1415926535) You can define other objects, though: (define *pi* 3.1415926535) (define *month-names* ‘(january february march april may june july august september october november december))

  4. "Global variables" Functions are "global", in that they can be used anywhere: (define (pi) 3.1415926535) (define (circle-area radius) (* (pi) radius radius)) A "global" variable, similarly, can be used anywhere: (define *pi* 3.1415926535) (define (circle-area radius) (* *pi* radius radius))

  5. Consider two forms of “month-name”: (define (month-name1 date) (first date)) (define month-name2 first) Are these the same?

  6. Let (let ((variable1value1) ;;definition 1 (variable2value2) ;;definition 2 ) statement1 ;;body statement2...)

  7. Using let to define temporary variables let lets you define variables within a procedure: (define (scramble-523 wd) (let ((second (first (bf wd))) (third (first (bf (bf wd)))) (fifth (item 5 wd)) ) (word fifth second third) ) ) (scramble-523 'meaty)  yea

  8. Let (let ((variable1value1) ;;definition 1 (variable2value2) ;;definition 2 ) statement1 ;;body statement2...)

  9. Three ways to define a variable In a procedure call (e.g., the variable proc): (define (doit proc value) ;; proc is a procedure here… (proc value)) As a global variable (define *alphabet* '(a b c d e … )) (define *month-name* '(january … )) With let

  10. Which pi? (define (square x) (let ((pi 3.1)) (* pi pi))) (define (square pi) (let ((pi 3.1)) (* pi pi))) (define pi 3.1415) (define (square pi) (let ((pi 3.14)) (* pi pi))) (square 1) è 9.61 (square 1) è 9.61 (square 1) è 9.61

  11. Which pi? (define pi 3.1415) (define (square x) (* pi pi)) (define pi 3.1415) (define (square pi) (* pi pi)) (square 1) è9.86902225 (square 1) è 1

  12. Anonymous functions: using lambda

  13. the lambda form "lambda" is a special form that returns a function: (lambda (arg1 arg2 …) statements ) (lambda (x) (* x x))      a procedure that takes one argument and multiplies it by itself

  14. Using lambda with define These are the same: (define (square x) (* x x)) (define square (lambda (x) (* x x)) )

  15. Using lambda with define These are VERY DIFFERENT: (define (adder-1 y) (lambda (x) (+ x 1))) (define adder-2 (lambda (x) (+ x 1)))

  16. Accumulate (define (my-accum1 accum-proc num-sent) (if (= (count num-sent) 1) (first num-sent) (accum-proc (first num-sent) (my-accum1 accum-proc (bf num-sent)) ) ) > (my-accum1 - ‘245)

  17. (my-accum1 - ‘( 2 4 5 )) (my-accum1 - ‘( 4 5 )) (my-accum1 - ‘( 5 )) (define (my-accum1 accum-proc num-sent) (if (= (count num-sent) 1) (first num-sent) (accum-proc (first num-sent) (my-accum1 accum-proc (bf num-sent)) ) ) > (my-accum1 - ‘245) (- 2 (- 4 5 • (- 2 (- 4 5)) • 3

More Related