码迷,mamicode.com
首页 > 其他好文 > 详细

尾调用(Tail Call)

时间:2019-02-16 23:11:05      阅读:300      评论:0      收藏:0      [点我收藏+]

标签: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

     

 

     

尾调用(Tail Call)

标签:sharp   csharp   turn   案例   pre   color   ret   style   col   

原文地址:https://www.cnblogs.com/webNotes/p/10389721.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!