public static void hanoiTower(int num, char a, char b, char c) {
//如果只有一个盘
if(num == 1) {
System.out.println("第1个盘从 " + a + "->" + c);
} else {
//如果我们有 n >= 2 情况,我们总是可以看做是两个盘 1.最下边的一个盘 2. 上面的所有盘
//1. 先把 最上面的所有盘 A->B, 移动过程会使用到 c
hanoiTower(num - 1, a, c, b);
//2. 把最下边的盘 A->C
System.out.println("第" + num + "个盘从 " + a + "->" + c);
//3. 把B塔的所有盘 从 B->C , 移动过程使用到 a塔
hanoiTower(num - 1, b, a, c);
}
}
相关文章
- 12-20算法题 week3
- 12-20leetcode 714买卖股票的最佳时机含手续费 贪心算法
- 12-20LeetCode 算法 191:位1的个数
- 12-20Python——递归、二分查找算法
- 12-20bzoj 3295: [Cqoi2011]动态逆序对(树套树 or CDQ分治)
- 12-20Python3求解字符串滤值与百元买百鸡算法
- 12-20用KMP算法实现strStr()
- 12-20LeetCode Implement strStr()(Sunday算法)
- 12-20算法第四版中 while (!StdIn.isEmpty()) 循环无法跳出问题
- 12-20群智能优化算法-测试函数matlab源码