sicp-3-3-1
Posted on 2015-02-26 20:23:25 +0900
in SICP
Lisp
3.16
The construct of zi
is hard for me.
It could be built with the lazy evaluation
as well.
3.17
(eq? x y)
tests whether x and y are the same object (that is, whether x and y are equal as pointers)
Understanding the pointer is the key to understand sameness and sharing.
3.18
3.19
It is a frequently asked question in a interview.
Special attention should be paied to the corner cases.