【SICP练习】123 练习3.54

练习3-54

原文

Exercise 3.54. Define a procedure mul-streams, analogous to add-streams, that produces the elementwise product of its two input streams. Use this together with the stream of integers to complete the following definition of the stream whose nth element (counting from 0) is n + 1 factorial:

(define factorials (cons-stream 1 (mul-streams <??> <??>)))

代码

(define factorials (cons-stream 1
                (mul-streams (add-streams ones integers)
                         factorials)))
;Value: factorials



感谢访问,希望对您有所帮助。 欢迎关注或收藏、评论或点赞。


为使本文得到斧正和提问,转载请注明出处:
http://blog.csdn.net/nomasp


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

posted @ 2015-03-28 22:09  nomasp  阅读(122)  评论(0编辑  收藏  举报