汉诺塔问题
Posted hjn123hjn
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了汉诺塔问题相关的知识,希望对你有一定的参考价值。
#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:
",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
",x,y);
}
以上是关于汉诺塔问题的主要内容,如果未能解决你的问题,请参考以下文章