Computer Science Fundamentals (CS153 2003S)
[Skip to Body]
Primary:
[Front Door]
[Current]
[Glance]
-
[EC]
[Honesty]
[Instructions]
[Links]
[Search]
[Syllabus]
Groupings:
[EBoards]
[Examples]
[Exams]
[Handouts]
[Homework]
[Labs]
[Lab Writeups]
[Outlines]
[Readings]
[Reference]
ECA:
[About]
[Grades]
[Quizzes]
[Submit Work]
[Change Password]
[Reset Password]
Misc:
[Experiments in Java]
[Scheme Reference]
[Scheme Report]
[CS153 2002S (Walker)]
[CS151 2003S (Rebelsky)]
[CS152 2000F (Rebelsky)]
[SamR]
a. Reflect on the key aspects of recursion.
b. Start DrScheme.
Define and test a Scheme procedure, (product values)
,
that takes a list of numbers as its argument and returns the result of
multiplying them all together. For example,
> (product (list 3 5 8)) 120 > (product (list 1 2 3 4 5 0)) 0
Warning: (product null)
should not be 0. It should be the identity for multiplication,
just as (sum null)
is the identity for addition.
Explain why.
Define and test a Scheme procedure, (square-each-element
values)
, that takes a list of numbers as its argument and
returns a list of their squares.
> (square-each-element (list -7 3 12 0 4/5))
(49 9 144 0 16/25)
Hint: For the base case, consider what the procedure should return when given a null list; for the other case, separate the car and the cdr of the given list and consider how to operate on them so as to construct the desired result.
Define and test a Scheme procedure,
(lengths lists)
that takes a list
of lists as its argument and returns a list of their lengths:
> (lengths (list (list 'alpha 'beta 'gamma)
(list 'delta)
null
(list 'epsilon 'zeta 'eta 'theta 'iota 'kappa)))
(3 1 0 6)
Define and test a Scheme procedure,
(tally-skips lst)
, that
takes one argument, a list, and determines how many times the symbol
skip
occurs in the list.
Define and test a Scheme procedure,
(filter-out-skips lst)
, that
takes a list of symbols as its argument and returns a list that does not
contain the symbol skip
, but is otherwise identical to the
given list. (Use the predicate eq?
to test whether two
symbols are alike.)
> (filter-out-skips (list 'hop 'skip 'jump 'skip 'and 'skip 'again))
(hop jump and again)
The example illustrates the intended effect of the procedure. By itself,
however, it's not an adequate test of your procedure. It would be a good
idea to test the case in which the given list is empty, a case it which it
contains only skip
s, and one in which it contains only symbols
other than skip
. You might also test different positions
opf skip
: at the front, at the end, and in the middle.
We recommend that you test the procedures you create very thoroughly. In most cases, testing does not reveal any errors in your procedures; but finding and correcting the errors that testing exposes is one of the most productive and rewarding uses of a programmer's time.
Define and test a Scheme procedure,
(tally-occurrences sym symbols)
,
that takes two arguments, a symbol and a list of symbols, and determines
how many times the given symbol occurs in the given list.
Hint: Use direct recursion. Here are the questions that you must resolve: What is the base case? What value should the procedure return in that case? How can you simplify the problem in order to recursively invoke the procedure being defined? What do you need to do with the value of the recursive procedure call in order to obtain the final result?
> (tally-occurrences 'apple (list 'pear 'apple 'cranberry 'banana 'apple)) 2 > (tally-occurrences 'apple (list 'oak 'elm 'maple 'spruce 'pine)) 0
Write a Scheme procedure, (num-odds values)
, that
returns the number of odd numbers in a list.
If you'd like to be extra careful, make sure that your procedure works correctly even if some of the values in the list are not numbers.
Write a Scheme procedure, (odds values)
, that, given a list,
produces another list that contains only the odd numbers in the
first list.
Write a Scheme procedure, (closest-to-zero values)
,
that, given a list of numbers (including both negative and positive
numbers), returns the value closest to zero in the list.
Define and test a Scheme procedure, (gaps values)
,
that takes a non-empty list of real numbers as its argument and returns
a list of the disparities between numbers that are adjacent on the
given list.
> (gaps (list 30 16 21 9 42))
(14 5 12 33)
Note that gaps always returns a list one element shorter than the one it is given.
Hint: What is the base case?
Define and test a Scheme predicate,
(all-in-range? values)
, that takes a
list as argument and determines whether all of its elements are in the
range from 0 to 100, inclusive.
Define and test a Scheme predicate,
(element? sym symbols)
, that takes two
arguments, a symbol and a list, and determines whether the given symbol is
an element of the given list.
Define and test a Scheme procedure, (types lst)
,
that takes a list as an argument and returns a list of the types of the
individual elements.
For example,
> (types (list 34 'a (list 1 2 3))) (number symbol list) > (types null) () > (types (list 'a 'b 'c)) (symbol symbol symbol)
You may want to use your type
procedure from a previous
lab.
Some of you have criticized the build-in length
method
for counting only the number of values in the top-level list. Write
a procedure, count-values
that counts the total number
of non-list values in a list or its sublists.
For example,
> (count-values (list 'a 'b 'c)) 3 > (count-values null) 0 > (count-values (list (list 1 2 3 (list 4 5)) (list 'a 'b) (list (list 2)))) 8 > (count-values (list null null null null)) 0
Monday, 11 September 2000 [Samuel A. Rebelsky]
Tuesday, 12 September 2000 [Samuel A. Rebelsky]
http://www.cs.grinnell.edu/~rebelsky/Courses/CS151/2000F/Labs/recursion1.html
.
Wednesday, 14 February 2001 [Samuel A. Rebelsky]
Sunday, 18 February 2001 [Samuel A. Rebelsky]
Monday, 19 February 2001 [Samuel A. Rebelsky]
Friday, 23 February 2001 [Samuel A. Rebelsky]
http://www.cs.grinnell.edu/~rebelsky/Courses/CS151/2001S/Labs/recursion1.html
.
Tuesday, 24 September 2002 [Samuel A. Rebelsky]
http://www.cs.grinnell.edu/~rebelsky/Courses/CS151/2002F/Labs/recursion1.html
.
Wednesday, 29 January 2003 [Samuel A. Rebelsky]
product
.
http://www.cs.grinnell.edu/~rebelsky/Courses/CS153/2003S/Labs/recursion.html
.
[Skip to Body]
Primary:
[Front Door]
[Current]
[Glance]
-
[EC]
[Honesty]
[Instructions]
[Links]
[Search]
[Syllabus]
Groupings:
[EBoards]
[Examples]
[Exams]
[Handouts]
[Homework]
[Labs]
[Lab Writeups]
[Outlines]
[Readings]
[Reference]
ECA:
[About]
[Grades]
[Quizzes]
[Submit Work]
[Change Password]
[Reset Password]
Misc:
[Experiments in Java]
[Scheme Reference]
[Scheme Report]
[CS153 2002S (Walker)]
[CS151 2003S (Rebelsky)]
[CS152 2000F (Rebelsky)]
[SamR]
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 May 6 09:20:00 2003.
The source to the document was last modified on Wed Jan 29 10:30:43 2003.
This document may be found at http://www.cs.grinnell.edu/~rebelsky/Courses/CS153/2003S/Labs/recursion.html
.
You may wish to
validate this document's HTML
;
;
Check with Bobby