recursive function
常见例句
- Our next example of a recursive function on lists will be a little more complicated.
我们的下一个基于列表的递归函数示例要稍微复杂一些。 - The program then seeds the recursive function with the first item on the list and the remaining list.
然后程序以列表中的第一项及其余部分列表为种子开始递归函数。 - You need to do this because your parameter will get clobbered on the recursive function call, and you will need access to it afterwards.
之所以需要这么做是因为参数会在递归函数调用上被截断,而以后却还需要访问它。 - This is another way of doing exponentiation, but this one's a recursive function. All right?
但这是一种递归的方法对不对?,好,让我们看看这种方法?
麻省理工公开课 - 计算机科学及编程导论课程节选 返回 recursive function