Fundamentals of Computer Science I (CS151.01 2006F)
[Skip to Body]
Primary:
[Front Door]
[Syllabus]
[Glance]
[Search]
-
[Academic Honesty]
[Instructions]
Current:
[Outline]
[EBoard]
[Reading]
[Lab]
[Homework]
Groupings:
[EBoards]
[Examples]
[Exams]
[Handouts]
[Homework]
[Labs]
[Outlines]
[Projects]
[Readings]
Reference:
[Scheme Report (R5RS)]
[Scheme Reference]
[DrScheme Manual]
Related Courses:
[CSC151.02 2006F (Davis)]
[CSCS151 2005S (Stone)]
[CSC151 2003F (Rebelsky)]
[CSC153 2004S (Rebelsky)]
Back to Recursion with Natural Numbers (2). On to Recursion with Files.
This outline is also available in PDF.
Held: Wednesday, 20 September 2006
Summary: Today we continue to explore files, particularly how one recurses over files.
Related Pages:
Notes:
unriffle.ss
and
index-of.ss.Overview:
anythingyou can do on the computer.
(open-input-file file-name).
(open-output-file file-name).
(read port)
(newline port)
(write value port)
(display value port)
(close-input-port port)
(close-output-port port)
read do when there's nothing left in the file?
It returns a special value (which DrScheme displays as
#<eof>).
eof-object?
(define recursive-proc
(lambda (val)
(if (base-case-test)
(base-case val)
(combine (partof val)
(recursive-proc (simplify val))))))
(eof-object? (peek-char input-port))
(define recursive-proc
(lambda (input-port other-params)
(if (eof-object? (peek-char input-port))
(close-and-return input-port (base-case other-params))
(combine (read input-port)
(recursive-proc input-port other-params)))))
(define close-and-return
(lambda (input-port return-value)
(close input-port)
return-value))
Back to Recursion with Natural Numbers (2). On to Recursion with Files.
[Skip to Body]
Primary:
[Front Door]
[Syllabus]
[Glance]
[Search]
-
[Academic Honesty]
[Instructions]
Current:
[Outline]
[EBoard]
[Reading]
[Lab]
[Homework]
Groupings:
[EBoards]
[Examples]
[Exams]
[Handouts]
[Homework]
[Labs]
[Outlines]
[Projects]
[Readings]
Reference:
[Scheme Report (R5RS)]
[Scheme Reference]
[DrScheme Manual]
Related Courses:
[CSC151.02 2006F (Davis)]
[CSCS151 2005S (Stone)]
[CSC151 2003F (Rebelsky)]
[CSC153 2004S (Rebelsky)]
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 Thu Nov 30 21:43:24 2006.
The source to the document was last modified on Mon Sep 4 08:43:33 2006.
This document may be found at http://www.cs.grinnell.edu/~rebelsky/Courses/CS151/2006F/Outlines/outline.16.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.