2015年5月20日水曜日

開発環境

計算機プログラムの構造と解釈[第2版](ハロルド エイブルソン (著)、ジュリー サスマン (著)、ジェラルド・ジェイ サスマン (著)、Harold Abelson (原著)、Julie Sussman (原著)、Gerald Jay Sussman (原著)、和田 英一 (翻訳)、翔泳社、原書: Structure and Interpretation of Computer Programs (MIT Electrical Engineering and Computer Science)(SICP))の2(データによる抽象の構築)、2.3(記号データ)、2.3.3(例: 集合の表現)、問題2.59.を解いてみる。

その他参考書籍

問題2.59.

コード(Emacs)

(define equal?
  (lambda (a b)
    (if (and (pair? a) (pair? b))
        (and (eq? (car a) (car b))
             (equal? (cdr a) (cdr b)))
        (eq? a b))))

(define element-of-set?
  (lambda (x set)
    (cond ((null? set) #f)
          ((equal? x (car set)) #t)
          (else (element-of-set? x (cdr set))))))

(define union-set
  (lambda (set1 set2)
    (cond ((null? set1) set2)
          ((element-of-set? (car set1) set2)
           (union-set (cdr set1) set2))
          (else
           (cons (car set1)
                 (union-set (cdr set1)
                            set2))))))

(union-set '(1 2 3 4 5) '(6 7 8 9 10))
(union-set '(1 2 3 4 5) '(1 2 3 4 5))
(union-set '(1 2 3 4 5) '(1 3 5 7 9))
(union-set '(1 3 5 7 9) '(1 2 3 4 5))

入出力結果(Terminal(kscheme), REPL(Read, Eval, Print, Loop))

$ kscheme < sample59.scm
kscm> kscm> kscm> kscm> (1 2 3 4 5 6 7 8 9 10)
kscm> (1 2 3 4 5)
kscm> (2 4 1 3 5 7 9)
kscm> (7 9 1 2 3 4 5)
kscm> $

0 コメント:

コメントを投稿