**The Little Schemer**, a book on recursive programming by Daniel P. Friedman and Matthias Felleisen
3
votes
1answer
111 views
why second argument to cons must be a list
I'm reading the book called the little schemer.
Before read that, i've finished reading first three chapter of SICP.
My question is that why second argument to cons must be a list.
However, (cons ...
3
votes
2answers
404 views
Little Schemer and Racket
I'm starting to read the Little Schemer and now instead of PLT Scheme we have Racket. I would like to know if Racket is suitable for doing the exercises in the book or do I need to get another true ...
4
votes
2answers
112 views
The result of cons in “The Little Schemer”
On page 178, there is a question: what is the value of
(cons rep-car
(cons (cons rep-quote
(cons
(cons rep-a
(cons rep-b
(cons rep-c
...
0
votes
1answer
92 views
how to do this length<=1 more than once?
I've spent a day reading page 166's length <= 1 in the book The Little Schemer, there is the following code:
(((lambda (mk-length)
(mk-length mk-length))
(lambda (mk-length)
(lambda (l)
...
3
votes
4answers
122 views
Remove superfluous else from cond statement?
I'm currently reading the 4th edition of "The Little Schemer". One early exercise is to create a function insertR which inserts an value to the right of a given value in a list. The book eventually ...
3
votes
1answer
129 views
The Little Schemer 4th Edition: rember function discussion
On page 41 after simplification of the rember function, there is a question-respond that I don't understand very well.
Q: So why don't we simplify right away?
R: Because then a function's structure ...
1
vote
2answers
121 views
The Little Schemer: stuck on multiinsertLR&co example
I was able to grok the multirember&co function after some work, but I can't really make much sense out of the following multiinsertLR&co code (p. 143):
(define multiinsertLR&co
(lambda ...
1
vote
1answer
63 views
what guide should I get from shift, align and shuffle?
In the beginning part of Chapter 9 in "The Little Schemer" , there are several examples such as looking, shift, align, and shuffle,
(define looking
(lambda (a lat)
(keep-looking a (pick 1 ...
4
votes
3answers
123 views
how to understand this continuation?
(let ([x (call/cc (lambda (k) k))])
(x (lambda (ignore) "hi"))) => "hi"
can you help me write the executing steps of this continuation ?
Thanks in advance!
BEST REGARDS
1
vote
3answers
84 views
what is the difference between these two Scheme functions?
(define self-add
(let ((x 0))
(lambda ()
(set! x (+ x 1))
x)))
(self-add) => 1
(self-add) => 2
(self-add) => 3
(self-add) => 4
2.
(define self-add1
(lambda ...
2
votes
1answer
125 views
Testing whether two pairs (cons cells) are the same
The following function from pg 150 of the Seasoned Schemer establishes whether two lists have the same identity (i.e. occupy the same memory) by mutating each list's cdr and then checking whether the ...
15
votes
2answers
638 views
Y combinator discussion in “The Little Schemer”
So I've spent a lot of time reading and re-reading the ending of chapter 9 in The Little Schemer, where the applicative Y combinator is developed for the "length" function. I think my confusion boils ...
11
votes
2answers
745 views
Recursion over a list of s-expressions in Clojure
To set some context, I'm in the process of learning Clojure, and Lisp development more generally. On my path to Lisp, I'm currently working through the "Little" series in an effort to solidify a ...
7
votes
3answers
402 views
Explain the continuation example on p.137 of The Little Schemer
The code in question is this:
(define multirember&co
(lambda (a lat col)
(cond
((null? lat)
(col (quote ()) (quote ())))
((eq? (car lat) a)
(multirember&co a
...
9
votes
6answers
828 views
Why all the lambdas in The Little Schemer?
After learning a bit of Scheme from SICP, I started reading The Little Schemer (which I find quite entertaining) and am about one fourth done. I noticed that I can write many (most? all?) solutions ...
2
votes
2answers
359 views
mini-kanren what is the difference between cond-a cond-u and cond-e?
I have tried to use an implementation of mini-kanren in clojure. But been struggling to understand the difference between cond-a cond-u and cond-e. I seem to be quite clear about cond-e but ...
17
votes
5answers
4k views
After “The Little Schemer”, what's next? [closed]
So I just read The Little Schemer and found it really good! I had no prior functional programming background, apart from the "infamous" parenthesis myth I so much heard about Lisp :P
I found it an ...
2
votes
1answer
653 views
Why does this work in DrRacket but not in Racket from the console
(define pick
(lambda (num lat)
(cond ((null? lat) (quote()))
((= (sub1 num) 0) (car lat))
(else
(pick (sub1 num) (cdr lat))))))
(define brees ...
7
votes
1answer
231 views
Little Schemer eqlist? function - alternate version?
I'm going through the "Little Schemer" book, and doing the various functions. Generally I end up with the same version as the books, but not for eqlist?, which is a function to test the equality of ...
6
votes
4answers
468 views
Scheme implementations - what does it mean?
I'm a beginning student in CS, and my classes are mostly in Java. I'm currently going through "Little Schemer" as a self study, and in the process of finding out how to do that I have found numerous ...
3
votes
2answers
239 views
Scheme: Why is there the need to use a cond here?
I tried to write a (simple, i.e. without eqan?) one? function like such:
(define one?
(lambda (n)
((= 1 n))))
But the above doesn't work though because when I call it like such:
(one? 1)
I ...
3
votes
2answers
391 views
Syntax changes from the examples in 'The Little Schemer' to the real Scheme
I have recently started following the examples from The Little Schemer and when trying out the examples in DrScheme, I have realised that there are some minor syntax changes from the examples in the ...
