方案中的流
以下过程是如何工作的:
(define integers
(cons-stream 1
(stream-map (lambda (x) (+ x 1))
integers))
How does the following process work:
(define integers
(cons-stream 1
(stream-map (lambda (x) (+ x 1))
integers))
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这里要认识到的重要一点是,仅计算您正在访问的列表元素所必需的那些表达式。
因此,当您访问第一个元素时,它会计算
cons-stream
的第一个参数,即1
。当您访问第二个元素时,它会计算
stream-map (lambda (x) (+ x 1))整数
的第一个元素。为此,它需要获取integers
的第一个元素,即1
,然后将1
添加到其中,得到2.
当您访问第三个元素时,它会计算
stream-map (lambda (x) (+ x 1)) 整数
的第二个元素。因此,它采用整数的第二个元素 (2
) 并将1
添加到其中以获得3
。等等。The important thing to realize here that only those expressions are evaluated which are neccessary to calculate the element of the list you're accessing.
So when you access the first element, it evaluates the first argument to
cons-stream
which is1
.When you access the second element, it evaluates the first element of
stream-map (lambda (x) (+ x 1)) integers
. For that it needs to get the first element ofintegers
which is1
and then adds1
to that and you get2
.When you access the third element, it evaluates the second element of
stream-map (lambda (x) (+ x 1)) integers
. So it takes the second element ofintegers
(2
) and adds1
to that to get3
. And so on.