Fundamentals of Computer Science I: Media Computing (CS151.01 2008S)
[Skip to Body]
Primary:
[Front Door]
[Syllabus]
-
[Academic Honesty]
[Instructions]
Current:
[Outline]
[EBoard]
[Reading]
[Lab]
[Assignment]
Groupings:
[Assignments]
[EBoards]
[Examples]
[Exams]
[Handouts]
[Labs]
[Outlines]
[Projects]
[Readings]
References:
[A-Z]
[Primary]
[Scheme Report (R5RS)]
[Scheme Reference]
[DrScheme Manual]
Related Courses:
[CSC151.02 2008S (Davis)]
[CSC151 2007F (Rebelsky)]
[CSC151 2007S (Rebelsky)]
[CSCS151 2005S (Stone)]
Misc:
[SamR]
[DrFu]
[GIMP]
[DrScheme]
Back to Conditionals. On to Naming Local Values.
This outline is also available in PDF.
Held: Wednesday, 20 February 2008
Summary: We consider procedures for that involve doing something with each element of a list. Along the way, we consider two key ideas of functional programming: higher-order programming and anonymous procedures .
Related Pages:
Notes:
Overview:
map.foreach!.Let's consider the steps involved in evaluating
(define x 5) (define y 3) (+ x y)
Now, let's try the following somewhat more complicated example.
(define x 5) (define y 7) (define fun (lambda (x) (* x y))) (fun 3)
forever).
map. The
procedure for the second apprach is foreach!.
map(map function (list v1 v2 ... vn))
(list (function v1) (function v2) (function v3) ... (function vn))
Let's return to the examples. What happens if we write
(define triple (lambda (x) (* x 3)))) (map triple (list 1 2 3))
As we'll see, the interpreter substitutes the lambda expression for
the triple. We can do the same.
(map (lambda (x) (* x 3)) (list 1 2 3))
foreach!(foreach! function (list v1 v2 .... vn))
(function v1) (function v2) ... (function vn) null
Back to Conditionals. On to Naming Local Values.
[Skip to Body]
Primary:
[Front Door]
[Syllabus]
-
[Academic Honesty]
[Instructions]
Current:
[Outline]
[EBoard]
[Reading]
[Lab]
[Assignment]
Groupings:
[Assignments]
[EBoards]
[Examples]
[Exams]
[Handouts]
[Labs]
[Outlines]
[Projects]
[Readings]
References:
[A-Z]
[Primary]
[Scheme Report (R5RS)]
[Scheme Reference]
[DrScheme Manual]
Related Courses:
[CSC151.02 2008S (Davis)]
[CSC151 2007F (Rebelsky)]
[CSC151 2007S (Rebelsky)]
[CSCS151 2005S (Stone)]
Misc:
[SamR]
[DrFu]
[GIMP]
[DrScheme]
Disclaimer:
I usually create these pages on the fly
, which means that I rarely
proofread them and they may contain bad grammar and incorrect details.
It also means that I tend to update them regularly (see the history for
more details). Feel free to contact me with any suggestions for changes.
This document was generated by
Siteweaver on Tue Apr 15 23:11:37 2008.
The source to the document was last modified on Thu Jan 17 16:44:18 2008.
This document may be found at http://www.cs.grinnell.edu/~rebelsky/Courses/CS151/2008S/Outlines/outline.18.html.
You may wish to
validate this document's HTML
;
;
http://creativecommons.org/licenses/by-nc/2.5/
or send a letter to Creative Commons, 543 Howard Street, 5th Floor,
San Francisco, California, 94105, USA.