hanoi(A,B,C,n){ if(n==1) move(A,C); else{ hanoi(A,C,B,n-1);//从A移动到C,借助A move(A,C); hanoi(B,C,A,n-1);//从B移动到C,借助A } }