;3.55
(define (patial s)
(cons-stream (stream-car s)
(stream-map +
(patial s)
(stream-cdr s))))
3.55
最新推荐文章于 2025-04-16 10:11:25 发布
;3.55
(define (patial s)
(cons-stream (stream-car s)
(stream-map +
(patial s)
(stream-cdr s))))