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

python中的递归小实例

时间:2018-04-14 10:12:53      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:数列   glob   return   count   def   实例   mat   斐波那契数列   汉诺塔   

#1.n!

def fact(n):
if n == 0:
return 1
else:
return n*fact(n-1)
print(fact(10))
#2.斐波那契数列F(n)=F(n-1)+F(n-2)
def f(n):
if n == 1 or n == 2:
return 1
else:
return f(n-1)+f(n-2)
#3汉诺塔问题
count = 0
def hanoi(n,src,dst,mid):
global count
if n == 1:
print("{}:{}->{}".format(1,src,dst))
count += 1
else:
hanoi(n-1,src,mid,dst)
print("{}:{}->{}".format(n, src, dst))#第n个圆盘从第src位置移动到dst位置
count += 1
hanoi(n-1,mid,dst,src)
hanoi(3,"A","C","B")
print(count)

python中的递归小实例

标签:数列   glob   return   count   def   实例   mat   斐波那契数列   汉诺塔   

原文地址:https://www.cnblogs.com/zhenshj/p/8830263.html

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