shouchengcheng
just do it
摘要: 2.2.7 deep-reverse(define (next x) (cond ((not (pair? x)) x) ((pair? (car x)) (cons (deep-reverse (car x)) (next (cdr x)))) (else x)))(define ... 阅读全文
posted @ 2015-11-29 15:01 shouchengcheng 阅读(273) 评论(0) 推荐(0) 编辑