标题:关于汉诺塔的程序问题
取消只看楼主
cclearner
Rank: 1
等 级:新手上路
帖 子:74
专家分:0
注 册:2007-6-28
 问题点数:0 回复次数:1 
关于汉诺塔的程序问题

#include <iostream>
using namespace std;
void move(char getone,char putone)
{
cout<< getone <<"-->"<<putone<<endl;
}
void hanoi(int n,char one,char two,char three)
{
void move(char getone,char putone);
if (n==1) move (one,three);
else
{
hanoi (n-1,one,three,two);
move(one,three);
hanoi(n-1,two,one,three);
}
}

int main()
{
void hanoi(int n,char one,char two,char three);
int m;
cout<<"Enter the number of diskes:";
cin>>m;
cout<<"the steps to moving "<<m<<" diskes:"<<endl;
hanoi(m,'A','B','C');
}
源代码就是这样了,我一点都看不懂,尤其红色部分,怎么就把整个问题执行了?

一点头绪都没有

搜索更多相关主题的帖子: 汉诺塔 char three void one 
2007-07-05 17:25
cclearner
Rank: 1
等 级:新手上路
帖 子:74
专家分:0
注 册:2007-6-28
得分:0 
是的,思想知道,由代码推得
递归学了,学的云里雾里的
讲得太简单,打算换本书,不过是比较麻烦
总之这个想了好几天,仍然不懂

好人哪,一群好人哪!!!!!!
2007-07-05 17:43



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-153032-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.054732 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved