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

牛哄哄的 汉诺塔递归

时间:2015-02-12 13:51:53      阅读:105      评论:0      收藏:0      [点我收藏+]

标签:

#include <stdio.h>


void move (int num, char f, char t)
{
    printf("%d : %c -> %c\n", num, f, t);
}


void hanoi(int num, char one, char two, char three)
{
    if(num == 1)
        move(num, one, three);
    else { 

   hanoi(num-1, one, three, two);
        move(num, one, three);
        hanoi(num-1, two, one, three);

 }
}


int main(int argc, char *argv[])
{
    int num = 3;
    hanoi(num, a, b, c);
    return 0;
}

 

牛哄哄的 汉诺塔递归

标签:

原文地址:http://www.cnblogs.com/chencesc/p/4287758.html

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