태그>sicp(총 193개의 글)
'sicp' 관련 최근글
-
- SICP Exercise 연습문제 3.2
-
NoSyu의 주저리 주저리 by |2008/03/08 18:56
google_ad_client = "pub-7048624575756403";google_ad_slot = "4952969789";google_ad_width = 300;google_ad_height = 250;google_ad_client = "pub-7048624575756403";google_ad_slot = "495296978
- SICP Exercise 연습문제 3.2
-
- SICP Exercise 연습문제 3.1
-
NoSyu의 주저리 주저리 by |2008/03/08 18:52
google_ad_client = "pub-7048624575756403";google_ad_slot = "4952969789";google_ad_width = 300;google_ad_height = 250;google_ad_client = "pub-7048624575756403";google_ad_slot = "495296978
- SICP Exercise 연습문제 3.1
-
- [SICP] 연습문제 1.10
-
일일신우일신 by 지아|2008/03/07 23:36
(define (A x y) (cond ((= y 0) 0) ((= x 0) (* 2 y)) ((= y 1) 2) (else (A (- x 1) (A x (- y 1)))))) 문제에는 위의 코드가 애커만 함수(Ackermann function)를 나타낸 프로시저라고 써있다. 실제 애커만 함수와 이 문제의 애커만 함수..
- [SICP] 연습문제 1.10
-
- [SICP] 연습문제 1.9
-
일일신우일신 by 지아|2008/03/06 22:53
(define (+ a b) (if (= a 0) b (inc (+ (dec a) b)))) 위의 프로시저는 재귀(recursion) 프로세스 (define (+ a b) (if (= a 0) b (+ (dec a) (inc b)))) 위의 프로시저는 반복(iterative) 프로세스 (+ 4 5)를 구하는 과정을 종이에 ..
- [SICP] 연습문제 1.9
-
- [SICP] 연습문제 1.8
-
일일신우일신 by 지아|2008/03/05 22:14
연습문제 1.8 공식에 오타가 있었다는건 이제 다들 아는 사실일테고.; (정오표 참고) (define (square x) (* x x)) (define (cube x) (* x x x)) (define (cube-iter guess x) (if (good-enough? guess x) guess (cube-iter (improve gu..
- [SICP] 연습문제 1.8
-
- [SICP] 연습문제 1.7 (1)
-
일일신우일신 by 지아|2008/03/04 00:25
(define (square x) (* x x)) (define (sqrt-iter guess x) (if (good-enough? guess x) guess (sqrt-iter (improve guess x) x))) (define (improve guess x) (average guess (/ x guess))) (define (average x y) (..
- [SICP] 연습문제 1.7 (1)
-
- SICP Exercise 연습문제 2장 소스 파일
-
NoSyu의 주저리 주저리 by |2008/03/03 21:42
google_ad_client = "pub-7048624575756403";google_ad_slot = "4952969789";google_ad_width = 300;google_ad_height = 250;google_ad_client = "pub-7048624575756403";google_ad_slot = "495296978
- SICP Exercise 연습문제 2장 소스 파일
-
- SICP Exercise 연습문제 2.97
-
NoSyu의 주저리 주저리 by |2008/03/03 21:23
google_ad_client = "pub-7048624575756403";google_ad_slot = "4952969789";google_ad_width = 300;google_ad_height = 250;google_ad_client = "pub-7048624575756403";google_ad_slot = "495296978
- SICP Exercise 연습문제 2.97
-
- SICP Exercise 연습문제 2.96
-
NoSyu의 주저리 주저리 by |2008/03/03 21:03
google_ad_client = "pub-7048624575756403";google_ad_slot = "4952969789";google_ad_width = 300;google_ad_height = 250;google_ad_client = "pub-7048624575756403";google_ad_slot = "495296978
- SICP Exercise 연습문제 2.96
-
- SICP Exercise 연습문제 2.95
-
NoSyu의 주저리 주저리 by |2008/03/03 20:38
google_ad_client = "pub-7048624575756403";google_ad_slot = "4952969789";google_ad_width = 300;google_ad_height = 250;google_ad_client = "pub-7048624575756403";google_ad_slot = "495296978
- SICP Exercise 연습문제 2.95
-
- SICP Exercise 연습문제 2.94
-
NoSyu의 주저리 주저리 by |2008/03/03 19:57
google_ad_client = "pub-7048624575756403";google_ad_slot = "4952969789";google_ad_width = 300;google_ad_height = 250;google_ad_client = "pub-7048624575756403";google_ad_slot = "495296978
- SICP Exercise 연습문제 2.94
-
- SICP Exercise 연습문제 2.93
-
NoSyu의 주저리 주저리 by |2008/03/03 19:42
google_ad_client = "pub-7048624575756403";google_ad_slot = "4952969789";google_ad_width = 300;google_ad_height = 250;google_ad_client = "pub-7048624575756403";google_ad_slot = "495296978
- SICP Exercise 연습문제 2.93
-
- SICP 스터디 2월 5주 주간회고
-
일일신우일신 by 지아|2008/03/02 23:29
5Fs에 근거하여 일주일간의 스터디에 대한 주간회고를 작성했습니다. 아래는 일주일간 작성한 스터디 로그도. Fact (사실) SICP 공부 시작 첫 주. 목표를 이틀에 1.x 장을 보는 것으로 정했다. 실제로는 일주일동안 1.1장도 제대로 끝내지 못 했다. 공부한 시간 : 4시간 15분Feel..
- SICP 스터디 2월 5주 주간회고
-
- SICP Exercise 연습문제 2.91
-
NoSyu의 주저리 주저리 by |2008/03/02 15:41
google_ad_client = "pub-7048624575756403";google_ad_slot = "4952969789";google_ad_width = 300;google_ad_height = 250;google_ad_client = "pub-7048624575756403";google_ad_slot = "495296978
- SICP Exercise 연습문제 2.91
-
- SICP Exercise 연습문제 2.90
-
NoSyu의 주저리 주저리 by |2008/03/02 15:26
google_ad_client = "pub-7048624575756403";google_ad_slot = "4952969789";google_ad_width = 300;google_ad_height = 250;google_ad_client = "pub-7048624575756403";google_ad_slot = "495296978
- SICP Exercise 연습문제 2.90