c语言递归问题: 汉诺塔问题:

 我来答
艾寄容来风
2019-07-05 · TA获得超过2.9万个赞
知道大有可为答主
回答量:1.1万
采纳率:28%
帮助的人:638万
展开全部
//可运行的代码
#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
*/
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式