递归算法 最后输出结果这个None是怎么来的呢
def move(n, a, b, c):
if n==1:
print a,"-->",c
return
move(n-1,a,c,b)
move(1,a,b,c)
move(n-1,b,a,c)
t=move(4, 'A', 'B', 'C')
print t
def move(n, a, b, c):
if n==1:
print a,"-->",c
return
move(n-1,a,c,b)
move(1,a,b,c)
move(n-1,b,a,c)
t=move(4, 'A', 'B', 'C')
print t
2018-01-09
举报