欢迎来到尧图网

客户服务 关于我们

您的位置:首页 > 新闻 > 国际 > sicp每日一题[2.31]

sicp每日一题[2.31]

2024/11/6 20:21:32 来源:https://blog.csdn.net/ilongchaos/article/details/142610236  浏览:    关键词:sicp每日一题[2.31]

Exercise 2.31

Abstract your answer to Exercise 2.30 to produce a procedure t r e e − m a p tree-map treemap with the property that s q u a r e − t r e e square-tree squaretree could be defined as

(define (square-tree tree) (tree-map square tree))

这道题跟上面一道的 map 实现几乎一模一样,我还以为我理解错题目了,上网搜了一下,发现别人也是这么写的,那就这样吧。

(define (tree-map f tree)(map (lambda (sub-tree)(if (pair? sub-tree)(tree-map f sub-tree)(f sub-tree)))tree))(define (square-tree tree) (tree-map square tree))(square-tree(list 1(list 2 (list 3 4) 5)(list 6 7))); 执行结果
'(1 (4 (9 16) 25) (36 49))

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com