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

汉诺塔问题(递归之路)

时间:2016-01-01 17:02:29      阅读:209      评论:0      收藏:0      [点我收藏+]

标签:

经典递归问题----汉诺塔问题

#include <stdio.h>
#include <stdlib.h>

void move(int i, int from, int to){
  printf("move %d from %d to %d\n", i, from, to);
}
void hanoi(int n, int from, int help, int to){ //use ‘help‘ to move ‘from‘ to ‘to‘.
  if(n == 1){
    move(n, from, to);
  }else{
    hanoi(n-1, from, to, help);
    move(n, from, to);
    hanoi(n-1, help, from, to);
  }
}

复杂度分析:T(n) = 2T(n-1)+1 ==> T(n)=2^n-1;

汉诺塔问题(递归之路)

标签:

原文地址:http://www.cnblogs.com/informatics/p/5093425.html

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