我一直和The Little Schemer一起学习Scheme,并使用PLT-Scheme来处理我的环境。 小Schemer帮助我很大程度上recursion(现在对我来说很简单),但是我被卡在介绍“collections家”的书的一部分,并且把整个函数作为一个整体继续。 这里是他们使用的示例代码。 我理解recursion元素,但我卡住了,特别是在lambda函数 – 我的头脑不能遵循path,如何设置该lambda函数的参数(因为他们唯一的调用是再次调用它们recursion,有在function体内没有具体的使用)。 如果有人能够或多或less地通过将函数recursion到lambda收集器中来计算我的计算path,那可能对我有帮助。 ;; Build a nested list of even numbers by removing the odd ones from its ;; argument and simultaneously multiply the even numbers and sum the odd ;; numbers that occur in its argument. (define (even-only-collector l col) (cond ((null? l) (col (quote ()) 1 0)) […]