SICP

DrSchemeで2.2.4 Example: A Picture Languageの演習

Windows. [File]->[Install .plt File...]->[Web]->[URL]に"http://www-pu.informatik.uni-tuebingen.de/users/sperber/software/picture.plt"を指定する。 [Language]->[Add Teachpack...]から"C:\Documents and Settings\Username\Application Data\PLT Sc…

Exerciseとか全然やってないよ

やった方がいいよなぁ…

2.1 Introduction to Data Abstraction

ここまで読んだ。 眠い… Extended Exerciseは後で(気が向いたら)。 Exercise 2.6(チャーチ数) ;; Exercise 2.6 ;; Church Numeral (define zero (lambda (f) (lambda (x) x))) (define (add-1 n) (lambda (f) (lambda (x) (f ((n f) x))))) ; (add-1 zero) ;…

2.2.3 Sequences as Conventional Interfaces

ここまで読んだ。map, filter, fold, append-map.

1.3 Formulating Abstractions with Higher-Order Procedures

この章まで読んだ。

1.2.1 Linear Recursion and Iteration

ここまで読んだ