【SICP练习】73 练习2.44



练习2.44

这一小节的内容真是太抽象了。这道题就是要我们来类比前面的right-split函数了。

(define (up-split painter n)

    (if (= n 0)

       painter

        (let ((smaller (up-split painter (- n 1))))

           (below painter (beside smallersmaller)))))

版权声明:本文为 NoMasp柯于旺 原创文章,如需转载请联系本人。

posted @ 2015-02-22 14:02  nomasp  阅读(108)  评论(0编辑  收藏  举报