【SICP练习】122 练习3.53
练习3-53
原文
Exercise 3.53. Without running the program, describe the elements of the stream defined by
(define s (cons-stream 1 (add-streams s s)))
分析
s是一串2的幂。也就是1、2、4、8、16、32……
版权声明:本文为 NoMasp柯于旺 原创文章,如需转载请联系本人。
Exercise 3.53. Without running the program, describe the elements of the stream defined by
(define s (cons-stream 1 (add-streams s s)))
s是一串2的幂。也就是1、2、4、8、16、32……
版权声明:本文为 NoMasp柯于旺 原创文章,如需转载请联系本人。