Discuss / Python / day3
def move(n, a, b, c):
    if n == 1:
        print(a, '-->', c)
    else:
        move(n-1, a, c, b)
        move(1, a, b, c)
        move(n-1, b, a, c)


就觉得这个写的不错,具体调用流程图画不出来

Yo_yo-89

#4 Created at ... [Delete] [Delete and Lock User]

链接失效了哦


  • 1

Reply