c语言递归问题: 汉诺塔问题:
1个回答
展开全部
//可运行的代码
#include
void
move(char
x,char
y)
//
定义move函数
{
printf("%c-->%c\n",x,y);
}
void
hannuota(int
n,char
one,char
two,char
three)
//
定义hanuota函数
//
将n个盘从one座借助two座,移到three座
{
if(n==1)
move(one,three);
else
{
hannuota(n-1,one,three,two);
move(one,three);
hannuota(n-1,two,one,three);
}
}
int
main()
{
int
m;
printf("input
the
number
of
diskes:");
scanf("%d",&m);
printf("The
step
to
move
%d
diskes:\n",m);
hannuota(m,'A','B','C');
while(1);
return
0;
}
/*
input
the
number
of
diskes:3
The
step
to
move
3
diskes:
A-->C
A-->B
C-->B
A-->C
B-->A
B-->C
A-->C
*/
#include
void
move(char
x,char
y)
//
定义move函数
{
printf("%c-->%c\n",x,y);
}
void
hannuota(int
n,char
one,char
two,char
three)
//
定义hanuota函数
//
将n个盘从one座借助two座,移到three座
{
if(n==1)
move(one,three);
else
{
hannuota(n-1,one,three,two);
move(one,three);
hannuota(n-1,two,one,three);
}
}
int
main()
{
int
m;
printf("input
the
number
of
diskes:");
scanf("%d",&m);
printf("The
step
to
move
%d
diskes:\n",m);
hannuota(m,'A','B','C');
while(1);
return
0;
}
/*
input
the
number
of
diskes:3
The
step
to
move
3
diskes:
A-->C
A-->B
C-->B
A-->C
B-->A
B-->C
A-->C
*/
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询