朋友你听说过尾递归吗

说起尾递归就不能不提一下尾调用(Tail Call)。
尾调用:在函数的最后一步调用另外一个函数。
function func(){

// ... other code
return otherFunc();// 尾调用

}

尾递归:在函数的最后一步调用自身
function func(){

// ... other code
return func();// 尾递归

}

阅读 568
0 条评论