关于C++,hanoi塔的递归问题一直是个经典问题,我们学习数据结构的时候也会时常用到,
因为它的时间复杂度和空间复杂度都很高,我们在实际的应用中不推荐使用这种算法,移动n个盘子,
需要2的n次幂减一步,例如:5个盘子,31步;10个盘子,1023步。
下面,是我整理的有关C++递归的代码实现过程,希望对大家的学习有所帮助。
- #include <iostream>
- using namespace std;
- int step=1;
- void move(int n,char from,char to)
- {
- cout<<"第 "<<step++<<" 步:将"<<n<<"号盘子"<<from<<"--------"<<to<<endl;
- }
- void hanoi(int n,char from,char denpend_on,char to)
- {
- if (n==1)
- move(1,from,to);
- else
- {
- hanoi(n-1,from,to,denpend_on);
- move(n,from,to);
- hanoi(n-1,denpend_on,from,to);
- }
- }
- int main()
- {
- cout<<"请输入盘子的个数:"<<endl;
- int n;
- scanf("%d",&n);
- char x=‘A‘,y=‘B‘,z=‘C‘;
- cout<<"盘子移动过程如下:"<<endl;
- hanoi(n,x,y,z);
- return 0;
- }
关于C++的递归(以汉诺塔为例)
原文:http://www.cnblogs.com/yijianzhongqing/p/5126667.html