計算機プログラムの構造と解釈[第2版]
(翔泳社)
ハロルド エイブルソン (著) ジュリー サスマン (著)
ジェラルド・ジェイ サスマン (著)
Harold Abelson (原著) Julie Sussman (原著)
Gerald Jay Sussman (原著) 和田 英一 (翻訳)
開発環境
- OS X Mavericks - Apple(OS)
- Emacs (CUI)、BBEdit - Bare Bones Software, Inc. (GUI) (Text Editor)
- Scheme (プログラミング言語)
- Gauche (処理系)
計算機プログラムの構造と解釈[第2版](ハロルド エイブルソン (著)、ジュリー サスマン (著)、ジェラルド・ジェイ サスマン (著)、Harold Abelson (原著)、Julie Sussman (原著)、Gerald Jay Sussman (原著)、和田 英一 (翻訳)、翔泳社、原書: Structure and Interpretation of Computer Programs (MIT Electrical Engineering and Computer Science)(SICP))の4(超言語的抽象)、4.1(超循環評価器)、4.1.7(構文解析を実行から分離する)、問題 4.24.を解いてみる。
その他参考書籍
- Instructor's Manual to Accompany Structure & Interpretation of Computer Programs
- プログラミングGauche (Kahuaプロジェクト (著), 川合 史朗 (監修), オライリージャパン)
問題 4.24.
コード(BBEdit, Emacs)
input.scm
(define fib (lambda (n) (cond ((= n 0) 0) ((= n 1) 1) (else (+ (fib (- n 2)) (fib (- n 1))))))) (fib 25) (exit)
入出力結果(Terminal(gosh), REPL(Read, Eval, Print, Loop))
$ time ./evaluator_without_analyzer.scm < input.scm ;;; M-Eval input: ;;; M-Eval value: ok ;;; M-Eval input: ;;; M-Eval value: 75025 ;;; M-Eval input: real 0m19.917s user 0m19.871s sys 0m0.034s $ time ./evaluator.scm < input.scm ;;; M-Eval input: ;;; M-Eval value: ok ;;; M-Eval input: ;;; M-Eval value: 75025 ;;; M-Eval input: real 0m11.336s user 0m11.278s sys 0m0.031s $
0 コメント:
コメントを投稿