发布时间:2013-02-21 11:01:37
(define f (lambda (x) (if (< x 3) x (+ (f (- x 1)) (* 2 (f (- x 2))) (* 3 (f (- x 3)))))));;--(define (f-tail n) (define f-i (lambda (x y z cnt) (if (= cnt 2) z (f-i y z (+ (* 3 x) (* 2 y) z) (- cnt.........【阅读全文】
阅读(1325) | 评论(0) | 转发(0)