摘要: # SICP第三章题解标签(空格分隔): SICP---[toc]## ex3-17统计一个表结构中的序对个数```lisp(define (count-pairs x) (count-helper x '())) (define (count-helper x seq) (if ... 阅读全文
posted @ 2015-06-14 15:34 ChrisZZ 阅读(408) 评论(0) 推荐(0) 编辑