首页 > 代码库 > Practice2
Practice2
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
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。