Fundamentals of Computer Science I (CS151.02 2007S)

Laboratory: Pairs and Pair Structures

This lab is also available in PDF.

Summary: In this laboratory, you will further ground your understanding of what happens behind the scenes when Scheme deals with lists and other pair-based structures.

Contents:

Exercises

Exercise 0: Preparation

Make sure you have some blank pieces of paper (lined is okay) and something with which to write.

Exercise 1: Some Pictures

Draw box-and-pointer diagrams for each of the following lists:

Be prepared to share your pictures with me.

Exercise 2: Some Pairs

Enter each of the following expressions into Scheme. In each case, explain why Scheme does or does not use the dot notation when displaying the value.

Exercise 3: More Pictures

Draw a box-and-pointer representation of the value of the last two expressions in the previous exercise.

Exercise 4: Are They Pairs?

What do you think that pair? will return for each of the following? How about list?. Attempt to confirm each answer experimentally and explain any that you found particularly tricky.

Exercise 5: Is It A List?

You may recall that I told you that many kinds of data are defined recursively. For example, a list is either (1) null or (2) cons of anything and a list.

Using that recursive definition of lists, write a procedure, (listp? val), that determines whether or not val is a list.

You may not use list? in your definition of listp?.

If You Have Extra Time

If you were able to complete the primary exercises with time to spare, you might want to consider the following problems:

Extra 1: Finding the Last element

Write a procedure, (last pairthing) that finds the last value in a list-like pairs structure. If the pair structure is actually a list, return the last element of the list. Otherwise, follow the cdrs until you find the last pair, and return the cdr of that pair.

In solving this problem you should only step through the list once.

Extra 2: Rewriting listp?

Write listp? without using if or cond.

Notes

 

History

 

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 Sep 13 20:54:25 2007.
The source to the document was last modified on Sun Mar 11 22:27:19 2007.
This document may be found at http://www.cs.grinnell.edu/~rebelsky/Courses/CS151/2007S/Labs/pairs.html.

Valid HTML 4.01 ; Valid CSS! ; Creative Commons License

Samuel A. Rebelsky, rebelsky@grinnell.edu

Copyright © 2007 Samuel A. Rebelsky. This work is licensed under a Creative Commons Attribution-NonCommercial 2.5 License. To view a copy of this license, visit 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.