Hanoi塔程序中n值的问题
我在程序if(n==1)处设置了一个断点 然后进行了单步调试,n 的值变化为3,2,1,2,1,2,3,2,1,2,3 然后再退出hanoi函数
n的值从3变为1 能理解 但为何又从1变为2呢 这个无法理解 还有当n==1
时为何不退出 却还能返回,这个也不太理解 虚心请教 非常感谢
#include<stdio.h>
void main()
{
void hanoi(int n,char one,char two,char three);
int m;
printf("input the number of disks:");
scanf("%d",&m);
printf("The step to moving %d diske:\n",m);
hanoi(m,'A','B','C');
}
void hanoi(int n,char one, char two,char three)
{
void move(char x,char y);
if(n==1)
move(one,three);
else
{
hanoi(n-1,one,three,two);
move(one,three);
hanoi(n-1,two,one,three);
}
}
void move( char x,char y)
{
printf("%c-->%c\n",x,y);
}