您的位置:首页 > 其它

【SICP练习】127 练习3.58

2015-09-08 00:00 381 查看

练习3-58

原文

Exercise 3.58. Give an interpretation of the stream computed by the following procedure:

(define (expand num den radix) (cons-stream (quotient (* num radix) den) (expand (remainder (* num radix) den) den radix)))

(Quotient is a primitive that returns the integer quotient of two integers.) What are the successive elements produced by (expand 1 7 10) ? What is produced by (expand 3 8 10) ?

分析

(expand 1 7 10) => (quotient (* 1 10) 7) => 1 => (expand (remainder 10 7) 7 10) => (quotient (* 3 10) 7) => 4 => (expand (remainder 30 7) 7 10) => (quotient (* 2 10) 7) => 2
……
…… => 1 4 2 8 5 7 4 2 8 5 7 ...

(expand 3 8 10)
……
…… => 3 7 5 0 0 0 ...


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

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

版权声明:本文为 NoMasp柯于旺 原创文章,未经许可严禁转载!欢迎访问我的博客:http://blog.csdn.net/nomasp
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息