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

汉诺塔问题的递归实现

时间:2014-09-26 14:02:48      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:style   io   os   ar   sp   问题   on   c   r   

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

汉诺塔问题的递归实现

标签:style   io   os   ar   sp   问题   on   c   r   

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

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