Fundamentals of CS I (CS151 2002F)
Primary:
[Skip To Body]
[Front Door]
[Current]
[Glance]
[Honesty]
[Instructions]
[Links]
[Search]
[Syllabus]
Groupings:
[Examples]
[Exams]
[Handouts]
[Homework]
[Labs]
[Outlines]
[Readings]
[Reference]
ECA:
[About]
[Grades]
[Quizzes]
[Submit Work]
[Change Password]
[Reset Password]
Miscellaenous:
[Scheme Reference]
[CS151 2002F Gum]
[CS151 2001S]
[SamR]
[Glimmer Labs]
[schemers.org]
Back to Discussion of Exam 2. On to Searching: Laboratory.
Held Tuesday, November 19, 2002
Summary
Today we begin to discuss two key problems, searching and sorting, and the algorithms commonly used to solve those problems.
Notes
right-insert (which you should remember
from homework 6: Given a binary
procedure, binproc, and a list of values, lst
(insert-right binproc lst), insertsbinproc between each pair of values, grouping to the right. E.g.
(insert-right - (list 1 2 3 4 5)) => (- 1 (- 2 (- 3 (- 4 5)))) (define foo (lambda (x y) (+ (* 10 x) y))) (insert-right foo (list 1 2 3 4)) => (foo 1 (foo 2 (foo 3 4)))
Overview
Back to Discussion of Exam 2. On to Searching: Laboratory.
Primary:
[Skip To Body]
[Front Door]
[Current]
[Glance]
[Honesty]
[Instructions]
[Links]
[Search]
[Syllabus]
Groupings:
[Examples]
[Exams]
[Handouts]
[Homework]
[Labs]
[Outlines]
[Readings]
[Reference]
ECA:
[About]
[Grades]
[Quizzes]
[Submit Work]
[Change Password]
[Reset Password]
Miscellaenous:
[Scheme Reference]
[CS151 2002F Gum]
[CS151 2001S]
[SamR]
[Glimmer Labs]
[schemers.org]
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 Mon Dec 2 08:42:00 2002.
The source to the document was last modified on Tue Sep 3 23:13:33 2002.
This document may be found at http://www.cs.grinnell.edu/~rebelsky/Courses/CS151/2002F/Outlines/outline.43.html.
You may wish to
validate this document's HTML
;
;
Check with Bobby