DeathKing / Learning-SICP

MIT视频公开课《计算机程序的构造和解释》中文化项目及课程学习资料搜集。
https://learningsicp.github.io
10.99k stars 1.54k forks source link

《Lec2a:高阶过程》课程答疑 #74

Closed DeathKing closed 2 years ago

DeathKing commented 6 years ago

同学们请在这里写下关于《Lec2a:高阶过程》课程的相关疑惑。

darktef commented 5 years ago
(define (sum term a next)
    (define (iter j ans)
        (if (> j b)
            ans
            (iter (next j)
                  (+ (term j) ans))))
    (iter a 0))

中间提到iterative的写法如上,是不是定义sum的时候少了一个b?

DeathKing commented 5 years ago

@darktef 是的。