計算機プログラムの構造と解釈[第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))の3(標準部品化力、オブジェクトおよび状態)、3.3(可変データでのモデル化)、3.3.2(キューの表現)、問題 3.22.を解いてみる。
その他参考書籍
- Instructor's Manual to Accompany Structure & Interpretation of Computer Programs
- プログラミングGauche (Kahuaプロジェクト (著), 川合 史朗 (監修), オライリージャパン)
問題 3.22.
queueはリストの最初と最後の対を指示する一対のポインタで表現、実装されているため、そのままLispの解釈系に印字させてもリストとして印字されない。
コード(BBEdit, Emacs)
queue1.scm
#!/usr/bin/emv gosh ;; -*- coding: utf-8 -*- (define (make-queue) (let ((front-ptr '() ) (rear-ptr '())) (define (dispatch m) (cond ((eq? m 'insert-queue!) (lambda (item) (let ((new-pair (cons item '()))) (if (null? front-ptr) (begin (set! front-ptr new-pair) (set! rear-ptr new-pair)) (set-cdr! rear-ptr new-pair))))) ((eq? m 'delete-queue!) (lambda () (if (null? front-ptr) (error "DELETE! called with an empty queue" queue) (set! front-ptr (cdr front-ptr))))) ((eq? m 'print-queue) (lambda () (print front-ptr))))) dispatch)) (define (insert-queue! queue item) ((queue 'insert-queue!) item)) (define (delete-queue! queue) ((queue 'delete-queue!))) (define (print-queue queue) ((queue 'print-queue)))
sample3_22.scm
#!/usr/bin/env gosh ;; -*- coding: utf-8 -*- (load "./queue1.scm") (define q1 (make-queue)) (print-queue q1) (insert-queue! q1 'a) (print-queue q1) (insert-queue! q1 'b) (print-queue q1) (delete-queue! q1) (print-queue q1) (delete-queue! q1) (print-queue q1)
入出力結果(Terminal(gosh), REPL(Read, Eval, Print, Loop))
$ ./sample3_22.scm () (a) (a b) (b) () $
0 コメント:
コメントを投稿