2013年8月10日土曜日

開発環境

計算機プログラムの構造と解釈(Gerald Jay Sussman(原著)、Julie Sussman(原著)、Harold Abelson(原著)、和田 英一(翻訳)、ピアソンエデュケーション、原書: Structure and Interpretation of Computer Programs (MIT Electrical Engineering and Computer Science)(SICP))の3(標準部品化力, オブジェクトおよび状態)、3.5(ストリーム)、3.53(ストリームパラダイムの開発)、反復をストリームプロセスとして形式化する、問題 3.64を解いてみる。

その他参考書籍

問題 3.64

コード(BBEdit)

sample.scm

(define (stream-limit s tolerance)
  (define (iter s a)
    (let ((b (stream-car s)))
      (if (< (abs (- a b)) tolerance)
          b
          (iter (stream-cdr s) b))))
  (iter (stream-cdr s) (stream-car s)))

0 コメント:

コメントを投稿