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

汉诺塔的实现

时间:2018-12-27 23:11:21      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:一个   div   lse   class   汉诺塔   put   span   int   inpu   

 1 num = int(input("请输入A的方块个数:"))
 2 def hanoi(num,a,b,c):
 3     if num==1:
 4         print(a,">>>",c)
 5         
 6     else:
 7         hanoi(num-1,a,c,b)  #n-1个方块从A移动到B
 8         hanoi(1,a,b,c)        #最后一个方块从A移动到C
 9         hanoi(num-1,b,a,c)    #n-1个方块从B移动到C
10 hanoi(num,"A","B","C")

 

汉诺塔的实现

标签:一个   div   lse   class   汉诺塔   put   span   int   inpu   

原文地址:https://www.cnblogs.com/NoteBook3013/p/10187487.html

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