码迷,mamicode.com
首页 > 编程语言 > 详细

python_factorial_tail recursion

时间:2018-07-24 22:20:09      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:actor   enter   second   tab   fir   head   text   factorial   recursion   

目录

一、Create New Project

1.1 the rules of name

  • hugeng007_xx(number)_name

二、hugeng007_01_tail recursion

2.1 Conventional Recursive Factorial

def factorial(n):
    if n==0:
        return 1
    return factorial(n-1)*n
  • Execution Process:
f(4)=f(3)*4
f(3)=f(2)*3
f(2)=f(1)*2
f(1)=1
  • the result of executionf(4)=1*2*3*4

    2.2 tail recursion

def factorial(n,acc=1):
    if n==0:
        return acc
    return factorial(n-1,n*acc)

三、The Unknown Word

The First Column The Second Column
tail [tel]尾部
recursion 递归[ri‘kesion]
factorial 阶乘
acc accumulation 叠加器

python_factorial_tail recursion

标签:actor   enter   second   tab   fir   head   text   factorial   recursion   

原文地址:https://www.cnblogs.com/hugeng007/p/9362833.html

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