c++汉诺塔算法
各位好!我今天刚进这个论坛,希望能和各位讨论……
刚从网上看了汉诺塔的c++程序,但是我有一点不明白(用红色标示)
#include <stdio.h>
int main()
{
void hanoi(int n,char one,char two,char three); // 对hanoi函数的声明
int m;
printf("input the number of diskes:");
scanf("%d",&m);
printf("The step to move %d diskes:\n",m);
hanoi(m,'A','B','C');
}
void hanoi(int n,char one,char two,char three) // 定义hanoi函数
// 将n个盘从one座借助two座,移到three座
{
void move(char x,char y); // 对move函数的声明
if(n==1)
move(one,three);//之前都能看懂,下面就有问题了
else
{
hanoi(n-1,one,three,two);//这句的意思是借助第三个座将n-1个盘从第一个座移到第二个座,但计算机怎么会知道这点呢?
move(one,three);
hanoi(n-1,two,one,three);//同上问题
}
}
void move(char x,char y) // 定义move函数
{
printf("%c-->%c\n",x,y); //麻烦了,谢过!
}