【SICP练习】52 练习2.20

简介:


练习2.20

如果读懂了题目的意思这道题也是不难的,重点就是带点尾部记法形式的define。下面我们就来写出same-parity过程。

(define (same-parity fist . other)

   (filter (if (even? fist)

                even?

             odd?)

          (cons first other)))

最巧妙地地方就在于用cons将散乱的firstother结合到一起,然后用filter来保留需要的部分,其中if返回的是谓词。
目录
相关文章
|
Go
【SICP练习】146 练习4.2
版权声明:转载请联系本人,感谢配合!本站地址:http://blog.csdn.net/nomasp https://blog.csdn.net/NoMasp/article/details/44729521 练习4-2 原文 Exercise 4.
676 0