为什么能通过hanoi(n-1,one,three,two)这一句话实现把n-1个盘子从1借助3移到2{hanoi(n-1,one,three,two)move(one,three)hanoi(n-1,two,one,three)}
这个就是递归,参考