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

【SICP练习】5 练习1.15

时间:2015-02-05 17:57:49      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:

练习1.15

(define (cube x) (* x x x))

(define (p x) (- (* 3 x) (* 4 (cube x))))

(define (sine angle)

    (if (not (> (abs angle) 0.1))

        angle

        (p (sine (/ angle 3.0)))))

大家自己将题目中的代码写入Edwin中,用trace可以追踪p的调用,这种功能在Visual Studio中都有,我也是最近才知道trace的。

(trace-entry p)

;Unspecified return value

(sine 12.15)

[Entering #[compound-procedure 12 p]

    Args: 4.9999999999999996e-2]

[Entering #[compound-procedure 12 p]

    Args: .1495]

[Entering #[compound-procedure 12 p]

    Args: .4351345505]

[Entering #[compound-procedure 12 p]

    Args: .9758465331678772]

[Entering #[compound-procedure 12 p]

    Args: -.7895631144708228]

;Value: -.39980345741334

由此看来p一共运行了5次。

 

大家应该都看出来了sine过程是一个递归,因此它的时间和空间复杂度都是O(loga)。每当题目中传入的参数a乘以3时,p的运行次数就会增加一次。大家可以用trace愉快的测试了。

【SICP练习】5 练习1.15

标签:

原文地址:http://www.cnblogs.com/NoMasp/p/4275388.html

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