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

递归函数 汉诺塔

时间:2016-04-27 18:56:20      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:

#include<stdio.h>
//递归函数,汉诺塔
void hanoi(int n,char c1,char c2,char c3);
void move(char x,char y);
int main(){
int i;
printf("move n dishes for A to C,n=");
scanf("%d",&i);
hanoi(i,‘A‘,‘B‘,‘C‘);
return 0;
}
void hanoi(int n,char c1,char c2,char c3){
if(n==1){
move(c1,c3);
}
else {
hanoi(n-1,c1,c3,c2);
move(c1,c3);
hanoi(n-1,c2,c1,c3);
}
}
void move(char x,char y){
printf("%c->%c\n",x,y);
}

递归函数 汉诺塔

标签:

原文地址:http://www.cnblogs.com/zhouyu0-0/p/5439892.html

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