開発環境
- OS X Lion - Apple(OS)
- Emacs、BBEdit - Bare Bones Software, Inc. (Text Editor)
- プログラミング言語: MIT/GNU Scheme
計算機プログラムの構造と解釈(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 コメント:
コメントを投稿