摘要:
8 Recursion8.11 recursive templates8.12 variations on the basic templates8.13 trees and car/cdr recursion8.14 helping functions8.16 tail recursion8.18... 阅读全文
摘要:
6 list data structure 首先注意cons的用法 (cons 'w '(x y z)) -> (w x y z)但是想在list的结尾添加一个元素就不能这样实现,eg,(cons '(w x y) 'z) -> ((w x y) . z)6.3 the APPEND functio... 阅读全文