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