スーパーエンジニアへの道

スーパーエンジニアへの道―技術リーダーシップの人間学作者: G.M.ワインバーグ,木村泉出版社/メーカー: 共立出版発売日: 1991/10/01メディア: 単行本購入: 22人 クリック: 382回この商品を含むブログ (87件) を見る気になったので読んでみた。 と、言っても…

忙しい?

忙しいかどうかというと…半端である。ここ1ヶ月近くをまとめると…・お盆に数日のみだが実家に帰る。 ・福岡に戻りいとこの結婚式。 ・ちょっとしてから屋久島。

民族の世界地図

民族の世界地図 (文春新書)作者: 21世紀研究会出版社/メーカー: 文藝春秋発売日: 2000/05/19メディア: 新書購入: 3人 クリック: 10回この商品を含むブログ (22件) を見る【書評】 友人から「"民族"が露骨な陣取り合戦や政治的な駆け引きに使われているのは、…

議論のレッスン

最近ミーティングをよく行うのだが、無駄な話が多い。 クリティカルシンキングやロジカルシンキングが唱われているけども、実際の手法ってわからない…。 って時に出会った一冊。議論のレッスン (生活人新書)作者: 福澤一吉出版社/メーカー: NHK出版発売日: 2…

Exercise 1.5

(define (p) (p)) (define (test x y) (if (= x 0) 0 y)) Then we evaluates the expression (test 0 (p)) What behavior will it with an interpreter that uses applicative-order evaluation? (test 0 (p)) ->(test 0 (p)) ->(test 0 (p)) ->.....When th…

Exercise 1.4

Use this observation to describe the behavior of the following procedure; (define (a-plus-abs-b a b) ((if (> b 0) + -) a b)) > (a-plus-abs-b 1 5) ->6 > (a-plus-abs-b 1 -5) ->6 Scheme can allows for combinations whose operators are compound…

Exercise 1.3

(define (square x) (* x x)) (define (sum-of-square x y) (+ (square x) (square y))) (define (top-two-sum-square a b c) (cond ((and (>= b a) (>= c a)) (sum-of-square b c)) ((and (>= a b) (>= c b)) (sum-of-square c a)) (else (sum-of-square a …

Exercise 1.2

Translate the following expression into prefix form 5+4+(2-(3-(6+4/5)))/3(6-2)(2-7) (/ (+ 5 4 (- 2 (- 3 (+ 6 (/ 4 5))))) (* 3 (- 6 2) (- 2 7))) ->-0.246

Exercise 1.1

I just write the results... 10 ->10 (+ 5 3 4) ->12 (- 9 1) ->8 (/ 6 2) ->3 (+ (* 2 4) (- 4 6)) ->6 (define a 3) (define b (+ a 1)) (+ a b (* a b)) ->19 (= a b) ->false (if (and (> b a) (< b (* a b))) b a) ->4 (cond ((= a 4) 6) ((= b 4) (+ …

久々の更新…SICP。

更新が前回から開いてしまいました…。 本当ならば、毎日更新できるのが理想なんですがなかなかそうもいかず。 就職活動も終わりましたので、ぼちぼち時間作ってやります! スローペースになりそうですが。。。

1.1 The Elements of Programming

prefix notation : 前置記法 pretty-printing : 改行を入れるなどして、コードをフォーマットして書くこと[1.1.2 Naming and the Environment] はSchemeでの関数名の規約や評価法が書いてある。Schemeの一般的な関数定義 (define (<name> <fomal parameters>) <body>) 式の評価順について </body></fomal></name>…

SICPの勉強。

勉強を始めたのが、1か月も前だから最初の方は記憶がちょっと曖昧。。

アメリカへ行ったついでにiPhoneを購入してきました。買う時から問題多発。 Apple Storeに行くも、「credit card でないと購入できない。」と言われる。 旅行中でカードの限度額に近かったので、購入は無理かと諦めかけた時に相方に助けてもらいなんとか購入…

開設。

前々からはてなを使おうと思っていたけども、ようやく本日開設。何かしらネタがあれば随時更新していこうと思います。