1. 程式人生 > >漢諾塔移動

漢諾塔移動

pri -- nbsp else == move 漢諾塔 int bsp

學習python進行中:

def move(n, a, b, c):
if n ==1:
print a,‘-->‘,c
else:
move(n-1,a,c,b)
print a,‘-->‘,c
move(n-1,b,a,c)
move(4, ‘A‘, ‘B‘, ‘C‘)

漢諾塔移動