方案中的流

发布于 2024-10-17 18:39:01 字数 137 浏览 2 评论 0原文

以下过程是如何工作的:

(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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

琴流音 2024-10-24 18:39:01

这里要认识到的重要一点是,仅计算您正在访问的列表元素所必需的那些表达式。

因此,当您访问第一个元素时,它会计算 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 is 1.

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 of integers which is 1 and then adds 1 to that and you get 2.

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 of integers (2) and adds 1 to that to get 3. And so on.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文