汉诺塔问题

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);
}


























以上是关于汉诺塔问题的主要内容,如果未能解决你的问题,请参考以下文章

分治算法——汉诺塔问题

汉诺塔的C语言代码怎么写啊

汉若塔系列续:汉诺塔VIII汉诺塔IX汉诺塔X。

汉诺塔内存分析(python)

汉诺塔游戏规则

汉诺塔问题