小時候玩漢諾塔,盤子多了感受很難。如今用python一寫,居然很是清晰簡單python
def move(n, a, b, c): if n == 1: print a,'-->',c return move(n-1, a, c, b) print a,'-->',c move(n-1, b, a, c) move(8, 'A', 'B', 'C')