码迷,mamicode.com
首页 > 其他好文 > 详细

Practice2

时间:2014-12-17 23:54:30      阅读:240      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   color   sp   on   div   log   bs   

Structure and Interpretation of Computer Programs

1.11

 1 (define (func n)
 2   (cond
 3     ((< n 3) n)
 4     ((>= n 3) (+ (* 3 (func (- n 3))) (* 2 (func (- n 2))) (func (- n 1))))
 5     )
 6   )
 7 
 8 
 9  (define (func1 n)
10    (sub 2 1 0 n))
11 
12 (define (sub a b c n)
13   (cond ((= n 0) c)
14         ((= n 1) b)
15         ((= n 2) a)
16         (else (sub (+ (* c 3) (* b 2) a) a b (- n 1)))
17         )
18   )

 

Practice2

标签:style   blog   io   color   sp   on   div   log   bs   

原文地址:http://www.cnblogs.com/lynnding/p/4170647.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!