태그>sicp(총 193개의 글)
'sicp' 관련 최근글
-
- SICP Exercise 연습문제 2.89
-
NoSyu의 주저리 주저리 by |2008/03/01 23: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 연습문제 2.89
-
- SICP Exercise 연습문제 2.88
-
NoSyu의 주저리 주저리 by |2008/03/01 23: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
Lisp, Scheme, SICP, Symbolic_Algebra, 뺄셈
- SICP Exercise 연습문제 2.88
-
- SICP Exercise 연습문제 2.87
-
NoSyu의 주저리 주저리 by |2008/03/01 23:48
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.87
-
- [SICP] 연습문제 1.6
-
일일신우일신 by 지아|2008/02/29 22:15
연습문제 1.6 (define (new-if predicate then-clause else-clause) (cond (predicate then-clause) (else else-claus))) (define (sqrt-iter guess x) (if (good-enough? guess x) guess (sqrt-iter (improve guess x) x..
- [SICP] 연습문제 1.6
-
- SICP Exercise 연습문제 2.86
-
NoSyu의 주저리 주저리 by NoSyu|2008/02/28 22:34
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.86
-
- SICP Exercise 연습문제 2.85
-
NoSyu의 주저리 주저리 by NoSyu|2008/02/28 22: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
Lisp, Scheme, SICP, apply_generic, drop
- SICP Exercise 연습문제 2.85
-
- SICP Exercise 연습문제 2.84
-
NoSyu의 주저리 주저리 by NoSyu|2008/02/28 22:18
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
Lisp, Scheme, SICP, apply_generic, raise
- SICP Exercise 연습문제 2.84
-
- [SICP] 연습문제 1.5
-
일일신우일신 by 지아|2008/02/26 21:47
연습문제 1.5 (define (p) (p)) (define (test x y) (if (= x 0) 0 y)) (test 0 (p)) 의 결과 차이 1. 정의대로 계산법(normal-order evaluation)인자 먼저 계산법(applicative order evaluation)을 따르면 if의 조건식을 먼저 계산 한 후 조건식이 ..
- [SICP] 연습문제 1.5
-
- [SICP] 연습문제 1.4
-
일일신우일신 by 지아|2008/02/26 21:21
연습문제 1.4 (define (a-plus-abs-b a b) ((if (> b 0) + -) a b)) Welcome to DrScheme, version 372 [3m]. Language: Standard (R5RS). > (a-plus-abs-b 4 2) 6 > (a-plus-abs-b 4 -2) 6 > (a-plus-abs-b 4 0) 4 >..
- [SICP] 연습문제 1.4
-
- [SICP] 연습문제 1.3
-
일일신우일신 by 지아|2008/02/25 22:12
연습문제 1.3 (define (square x) (* x x)) (define (sum-of-square x y) (+ (square x) (square y))) (define (ex1-3 a b c) (cond ((and (<= a b) (<= a c)) (sum-of-square b c)) ((and (<= b a) (<..
- [SICP] 연습문제 1.3
-
- [SICP] 연습문제 1.2
-
일일신우일신 by 지아|2008/02/25 22:07
연습문제 1.2 (/ (+ 5 4 (- 2 (- 3 (+ 6 (/ 4 5))))) (* 3 (- 6 2) (- 2 7))) 결과 Welcome to DrScheme, version 372 [3m]. Language: Standard (R5RS). -37/150 >
- [SICP] 연습문제 1.2
-
- [SICP] 연습문제 1.1
-
일일신우일신 by 지아|2008/02/25 22:05
연습문제 1. 1
- [SICP] 연습문제 1.1
-
- [독서기록] 사랑하지 않으면 떠나라!
-
일일신우일신 by 지아|2008/02/24 21:37
사랑하지 않으면 떠나라! 차드 파울러 저/송우일 역 시작 : 2008. 02. 12 완료 : 2008. 02. 22 회사에서 짬짬히 읽는다고 좀 시간이 걸리긴 했습니다. 에세이류의 책이기 때문에 삼색볼펜으로 줄 긋기는 좀 그렇고 해서 초록색 색연필을 들고 마음에 와닿는 부분만 줄을 그으면 읽으려고 노력..
사랑하지않으면떠나라, 송우일, 독서기록, 기록, SICP
- [독서기록] 사랑하지 않으면 떠나라!
-
- SICP 스터디 모임 함께 공부해요.
-
일일신우일신 by 지아|2008/02/22 10:42
'컴퓨터 프로그램의 구조와 해석', 일명 SICP는 어렵기로 소문이 난 책입니다. 단순히 프로그래밍 능력만을 요구하는게 아니라 수학 외에도 다양한 지식을 요구한다고 합니다. 저는 여전히 표지만 들여다보고 있는 상황이라 책이 이렇다 저렇다 평가는 못 하겠지만, SICP로 검색..
SICP함께공부하기, SICP, 온라인스터디, 구글그룹스, Scheme
- SICP 스터디 모임 함께 공부해요.