C语言在TC2.0下编程。汉诺塔的图形显示
期末大作业啊!求高手帮忙。本人新手每分唉。愿拜师学习。具体、在TC下用C语言编程“汉诺塔的图形”代码,用TC可以运行。求高手...
期末大作业啊!求高手帮忙。本人新手每分唉。愿拜师学习。
具体、在TC下用C语言编程“汉诺塔的图形”代码,用TC可以运行。求高手 展开
具体、在TC下用C语言编程“汉诺塔的图形”代码,用TC可以运行。求高手 展开
2个回答
展开全部
#include<stdio.h>
void move(char x,char y)
{
printf("%c-->%c\n",x,y);
}
void hanoi(int n,char one,char two,char three)
{
if(n==1) move(one,three);
else
{
hanoi(n-1,one,three,two);
move(one,three);
hanoi(n-1,two,one,three);
}
}
void main()
{
int m;
printf("input the number of disks:");
scanf("%d",&m);
printf("the step to moving %3d diskes:\n",m);
hanoi(m,'A','B','C');
}
void move(char x,char y)
{
printf("%c-->%c\n",x,y);
}
void hanoi(int n,char one,char two,char three)
{
if(n==1) move(one,three);
else
{
hanoi(n-1,one,three,two);
move(one,three);
hanoi(n-1,two,one,three);
}
}
void main()
{
int m;
printf("input the number of disks:");
scanf("%d",&m);
printf("the step to moving %3d diskes:\n",m);
hanoi(m,'A','B','C');
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询