如何在Python中實現尾遞歸優化

一般遞歸 1 2 3 4 5 6 def normal_recursion ( n ) :      if n == 1 :          return 1      else :          return n + normal_recursion ( n - 1 )   執行: 1 2 3 4 5 6 7 8 9 10 normal_recursion ( 5 ) 5 + normal
相關文章
相關標籤/搜索