码迷,mamicode.com
首页 > 编程语言 > 详细

汉诺塔递归算法

时间:2016-09-01 22:42:41      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:

public class HinoTest {
public static int step=0;

/**
*
* @param num 盘子数
* @param a 柱子
* @param b 柱子
* @param c 柱子
*/
public static void hinoMove(int num,String a,String b,String c){
if (num==1)
move(num,a, c);
else {
hinoMove(num-1,a,c,b);
move(num,a,c);
hinoMove(num-1,b,a,c);
}
}

public static void move(int num,String a,String c){
step++;
System.out.println("第"+step+"步,第"+num+"个盘子"+"从"+a+"移动到"+c);
}
}

汉诺塔递归算法

标签:

原文地址:http://www.cnblogs.com/LvLoveYuForever/p/5831457.html

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