Fundamentals of CS I (CS151 2002F)

Repetition with Recursion

Exercises

Exercise 0: Preparation

a. Reflect on the key aspects of recursion.

b. Start DrScheme.

Exercise 1: Product

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.

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.

Exercise 2: Squaring Lists

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.

Exercise 3: Lengths of Lists

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)

Exercise 4: How Much Did You Skip?

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.

Exercise 5: No Skipping Allowed

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 skips, 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.

Exercise 6: Tallying Symbols

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 

Exercise 7: Counting Odd Numbers

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.

Exercise 8: Extracting Odds

Write a Scheme procedure, (odds values), that, given a list, produces another list that contains only the odd numbers in the first list.

Exercise 9: Closest to Zero

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.

Exercise 10: Finding the Gaps

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?

Exercise 11: Are They All Valid?

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.

Exercise 12: Is It There?

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.

Exercise 13: Types

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.

For Those With Extra Time

This problem is for extra credit.

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 

 

History

Monday, 11 September 2000 [Samuel A. Rebelsky]

Tuesday, 12 September 2000 [Samuel A. Rebelsky]

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]

Tuesday, 24 September 2002 [Samuel A. 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 Mon Dec 2 09:19:15 2002.
The source to the document was last modified on Tue Sep 24 09:25:36 2002.
This document may be found at http://www.cs.grinnell.edu/~rebelsky/Courses/CS151/2002F/Labs/recursion1.html.

You may wish to validate this document's HTML ; Valid CSS! ; Check with Bobby

Samuel A. Rebelsky, rebelsky@grinnell.edu