当前位置: 代码迷 >> C语言 >> 这是汉诺铁塔移动程序,请哪位大哥帮忙讲一下程序是如何实现的
  详细解决方案

这是汉诺铁塔移动程序,请哪位大哥帮忙讲一下程序是如何实现的

热度:276   发布时间:2005-05-18 17:16:00.0
这是汉诺铁塔移动程序,请哪位大哥帮忙讲一下程序是如何实现的
void move(getone,putone)
char getone,putone;
{printf("%c-->%c\n",getone,putone);}
void hanoi(n,one,two,three)
char one,two,three;
int n;
{if(n==1) move (one,three);
else
{hanoi(n-1,one,three,two);move(one,three);hanoi(n-1,two,one,three);}}
main()
{int m;
printf("input the number of diskes:");scanf("%d",&m);
printf("the step to moving %3d diskes:\n",m);
hanoi(m,'a','b','c');getch();}
这是汉诺铁塔移动程序,请哪位大哥帮忙讲一下程序是如何实现的,谢谢!
搜索更多相关的解决方案: 汉诺铁塔  

----------------解决方案--------------------------------------------------------
  相关解决方案