問題3.55 – SICP(計算機プログラムの構造と解釈)その149
2009年04月08日
問題3.55
(define (partial-sums s) (cons-stream (stream-car s) (add-streams (stream-cdr s) (partial-sums s)))) (stream-ref (partial-sums integers) 0) gosh> 1 (stream-ref (partial-sums integers) 1) gosh> 3 (stream-ref (partial-sums integers) 2) gosh> 6 (stream-ref (partial-sums integers) 3) gosh> 10 (stream-ref (partial-sums integers) 4) gosh> 15 (stream-ref (partial-sums integers) 5) gosh> 21
計算機プログラムの構造と解釈
posted with amazlet at 08.11.07
ジェラルド・ジェイ サスマン ジュリー サスマン ハロルド エイブルソン
ピアソンエデュケーション
売り上げランキング: 6542
ピアソンエデュケーション
売り上げランキング: 6542