摘要: 函数move(n,a,b,c)的定义是将n个圆盘从a借助b移动到c。 def move(n,a,b,c): if n==1: print a,'-->',c move (n-1,a,c,b) print a,'-->',c move(n-1,b,a,c) move(4,'A','B','C') 运行 阅读全文
posted @ 2019-03-05 16:31 小样木有样 阅读(207) 评论(0) 推荐(0) 编辑