2007-10-13から1日間の記事一覧

(+)

知らなかった。 gosh> (+) 0

Cで2進数値を記述

C/C++で2進数値を記述 - きまぎらすほしゅの不定記 404 Blog Not Found:tips - 二進数表記まとめ を読んだら、「Rubyでプリプロセス」という手があるのかと。そんなわけでerbでプリプロセスしてみた。 binary.erb.c #include <stdio.h> #include <stdlib.h> int main(void) { pr</stdlib.h></stdio.h>…

SICPを読む(53) 2.2.2(2) 木の写像

さてさて、リスト処理も本格的な感じになってきます。今回は木の写像。 まずは普通に ふつうに。 (define (scale-tree tree n) (cond ((null? tree) `()) ((not-pair? tree) (* tree n)) (else (cons (scale-tree (car tree) n) (scale-tree (cdr tree) n)))…