美文网首页
汉诺塔 python实现

汉诺塔 python实现

作者: 大飞哥 | 来源:发表于2018-05-24 22:57 被阅读28次
def hanoi(N,base,asist,destination):
    if N==1:
       #move(1,base,destination)
       print('Move disk from {} to {}'.format(base, destination) ) 
    else:
        hanoi(N-1,base,destination,asist)
        #move(1,base,destination)
        print('Move disk from {} to {}'.format(base, destination) )
        hanoi(N-1,asist,base,destination)

相关文章

网友评论

      本文标题:汉诺塔 python实现

      本文链接:https://www.haomeiwen.com/subject/rcmejftx.html