내이글루 | 포토로그 | 로그인

egloos

  • 밸리
  • 테마목록
  • 이오공감
  • 스킨&위젯
  • 앱스
  • 마이리더
추천검색어:
메이크업, 뮤지컬
  • 전체인기글
  • 영화
  • 방송&연예
  • 도서
  • 음악
  • 공연&전시
  • 음식
  • 애완반려동물
  • 여행
  • 사진
  • 패션&뷰티
  • 연애
  • 개그
  • 일상
  • 육아
  • IT
  • 얼리어답터
  • 지름
  • 자동차
  • 스포츠
  • 뉴스비평
  • 인문사회
  • 역사
  • 세계
  • 과학
  • 게임
  • 애니메이션
  • 만화
  • 토이
  • 창작
  • 벼룩시장
  • 지식Q&A
  • 이글루스

태그>sicp(총 212개의 글)

'sicp' 관련 최근글이글루스 'sicp' 태그 최근글 이 태그에 글쓰기

  • 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

    Lisp, Scheme, SICP, Symbolic_Algebra, density

  • 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

    Lisp, Scheme, SICP, Symbolic_Algebra, density

  • 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

    Lisp, Scheme, SICP, Symbolic_Algebra, density

  • 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.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

    Lisp, Scheme, SICP, Symbolic_Algebra, zero

  • [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, Scheme, SICP함께공부하기

  • 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

    Lisp, Scheme, SICP, apply_generic

  • 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.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] 연습문제 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, Scheme, SICP함께공부하기

  • [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, Scheme, SICP함께공부하기

  • [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, SICP함께공부하기, Scheme

  • [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, SICP함께공부하기, Scheme

  • [SICP] 연습문제 1.1
    [SICP] 연습문제 1.1
    일일신우일신  by 지아|2008/02/25 22:05

    연습문제 1. 1

    SICP, SICP함께공부하기, Scheme

  • [독서기록] 사랑하지 않으면 떠나라!
    일일신우일신  by 지아|2008/02/24 21:37

    사랑하지 않으면 떠나라! 차드 파울러 저/송우일 역 시작 : 2008. 02. 12 완료 : 2008. 02. 22 회사에서 짬짬히 읽는다고 좀 시간이 걸리긴 했습니다. 에세이류의 책이기 때문에 삼색볼펜으로 줄 긋기는 좀 그렇고 해서 초록색 색연필을 들고 마음에 와닿는 부분만 줄을 그으면 읽으려고 노력..

    사랑하지않으면떠나라, 송우일, 독서기록, 기록, SICP

이오공감추천하기버튼
이오공감 추천하기
제목: (아래 주소창에 URL을 입력하면 추천할 글의 제목을 불러옵니다.)
이오공감운영정책보기
닫기
이전 11 12 13 14 15
이오공감 추천하기
제목:
이오공감운영정책보기
닫기


SICP함께공부하기 Scheme Lisp Symbolic_Algebra GCD 유클리드_호제법 apply_generic 온라인스터디 sparse density


피규어 일본여행 아이폰으로 김정일개새끼 프로야구 고양이 맛집 디아블로3 라이트노벨 맨인블랙3

Copyright ⓒ SK Communications. All rights reserved.

  • 회사소개
  • 이용약관
  • 개인정보취급방침
  • 이메일 수집거부
  • API센터
  • 고객센터