首页 > 其他 > 详细

汉诺塔问题的递归实现

时间:2014-09-26 12:54:00      阅读:219      评论:0      收藏:0      [点我收藏+]
#include<iostream>
using namespace std;
int main()
{
     void hanoi(int n,char one,char two,char three);
     int num;
     cout<<"请输入要计算的盘子数:";
     cin>>num;
     hanoi(num,‘A‘,‘B‘,‘C‘);
}




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)
{
     cout<<x<<"-->"<<y<<endl;
}

汉诺塔问题的递归实现

原文:http://blog.csdn.net/christprince007/article/details/39577881

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!