标签:sharp csharp turn 案例 pre color ret style col
尾调用(Tail Call) 就是指某个函数的最后一步是调用另一个函数。
function f(x){ return g(x); }
尾调用 案例 :【尾递归 】
1 function factorial(n) { 2 if (n === 1) return 1; 3 return n * factorial(n - 1); 4 } 5 6 factorial(4) // 24
1 function factorial(n,total) { 2 if (n === 1) return total; 3 return factorial(n - 1,n*total); 4 } 5 factorial(4,1) // 24
标签:sharp csharp turn 案例 pre color ret style col
原文地址:https://www.cnblogs.com/webNotes/p/10389721.html