| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 1982 人关注过本帖
标题:关于汉诺塔的问题,知道怎么移动盘子,却没明白计算机如何执行代码的
取消只看楼主 加入收藏
autumnyellow
Rank: 2
等 级:论坛游民
帖 子:72
专家分:75
注 册:2015-4-14
结帖率:100%
收藏
已结贴  问题点数:20 回复次数:2 
关于汉诺塔的问题,知道怎么移动盘子,却没明白计算机如何执行代码的
谁能解释一下汉诺塔C语言递归代码是怎么执行的
2013-09-15 | 分享
#include<stdio.h>
#include<stdlib.h>
int main()
{
int hanoi(int n,char one,char two,char three);
int m;
printf("input the number of diskes:");
scanf("%d",&m);
printf("The step to moving %d disk:\n",m);
hanoi(m,'A','B','C');
system("pause");
}
int hanoi(int n,char one,char two,char three)
{
int 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);
}
}
int move(char x,char y)
{
printf("%c-->%c\n",x,y);
}
***********************************************************
这段代码没有看懂int hanoi(int n,char one,char two,char three)
{
int move(char x,char y);
if(n==1)
move(one,three);
else
{
hanoi(n-1,one,three,two);//one借助two移到three   
move(one,three);
hanoi(n-1,two,one,three);
}
}他是怎么执行的,网上查了几天了都是说的搬运的过程却没有人说明计算机执行代码的过程
搜索更多相关主题的帖子: include 计算机 system moving number 
2015-07-16 16:08
autumnyellow
Rank: 2
等 级:论坛游民
帖 子:72
专家分:75
注 册:2015-4-14
收藏
得分:0 
什么是断点??
2015-07-16 17:42
autumnyellow
Rank: 2
等 级:论坛游民
帖 子:72
专家分:75
注 册:2015-4-14
收藏
得分:0 
回复 5楼 erty1001
你是在回复这个问题吗?大哥!!
2015-07-16 22:52
快速回复:关于汉诺塔的问题,知道怎么移动盘子,却没明白计算机如何执行代码的
数据加载中...
 
   



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

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