摘要: sicp每日一题[2.63-2.64] Exercise 2.63 Each of the following two procedures converts a binary tree to a list. (define (tree->list-1 tree) (if (null? tree) '() (append (tree->l 阅读全文
posted @ 2024-10-31 08:40 再思即可 阅读(2) 评论(0) 推荐(0) 编辑