码迷,mamicode.com
首页 > 其他好文 > 详细

汉诺塔问题

时间:2019-01-08 19:20:59      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:har   font   char   print   void   scanf   stdio.h   汉诺塔问题   numbers   

#include<stdio.h>
int main()
{
void hanoi(int n,char one,char two,char three);
int m;
printf("Inout the numbers of disks:");
scanf("%d",&m);
printf("The step to move %d disks:\n",m);
hanoi(m,‘A‘,‘B‘,‘C‘);
return 0;
}
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);
}

汉诺塔问题

标签:har   font   char   print   void   scanf   stdio.h   汉诺塔问题   numbers   

原文地址:https://www.cnblogs.com/hjn123hjn/p/10240452.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!