汉诺塔问题

 

 code

def hanoi(n, a, b, c):
    if n > 0:
        hanoi(n-1, a, c, b)
        print("moving from %s to %s" % (a, c))
        hanoi(n-1, b, a, c)

hanoi(2, 'A', 'B', 'C')

 

posted @ 2022-03-23 17:19  KYZH  阅读(21)  评论(0编辑  收藏  举报