http://www.imooc.com/code/3515
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)
OLD姜
相关分类