当前位置:网站首页>How to play the Tower of Hanoi
How to play the Tower of Hanoi
2022-08-04 13:06:00 【ふり】
作者 :ふり
专栏 :JavaSE
格言 : I came ; I saw ; I conquer
汉诺塔
- 汉诺塔问题源自印度一个古老的传说,印度教的“创造之神”梵天创造世界时做了 3 根金刚石柱,其中的一根柱子上按照从小到大的顺序摞着 64 个黄金圆盘.梵天命令一个叫婆罗门的门徒将所有的圆盘移动到另一个柱子上,移动过程中必须遵守以下规则:
每次只能移动柱子最顶端的一个圆盘
;- 每个柱子上,
小圆盘永远要位于大圆盘之上
;
思路讲解
When the starting column is only on 1 个圆盘时,We can easily move it to the target bar
A ->C
When there is on the starting column 2 个圆盘时,先将AMove to the small plate on topB上;再将AThe large plate on the move toC上,最后将BMove to the small plate on topC上即可
A -> B 、 A -> C、 B -> C
如果是三个盘子,先将A上的盘子移动到C上;再将A上的盘子移动到B上,再将C上的盘子移动到B,再将A 上的盘子移动到C,will go upB的盘子移动到A,再将B的盘子移动到C,最后将A移动到C即可.
A -> C 、 A -> B 、 C -> B 、 A -> C 、 B -> A 、 B - > C 、 A -> C
According to three examples can be found,Except when there is only one plate.The plate is moving toC的过程中会有 n-1 个盘子在B上暂存.
两个盘子 n-1 There will be a plateB上暂存
三个盘子 n-1 There will be two platesB上暂存
3One plate of the Tower of Hanoi problem
思路
- 借助C把 n-1 个盘子移动到B
- 把AMove the remaining plates toC
- 借助A把 n-1 个盘子移动到C
public class hannuota {
/** * @name 递归求解汉诺塔 * @param str 起始位置 * @param transit 中转位置 * @param end 目标位置 * **/
public static void hanio(char str, char transit, char end, int number) {
if (1 == number) {
//只有一个盘子
//Move the tray paper directly to C
move(str, end);
return;
}else {
//The plate is larger than1个
//此时 transit 是目标位置;而 end 是中转位置
hanio(str, end, transit, number - 1);//借助C将n-1个盘子移动到B上
move(str, end);
//此时 start 是中转位置,而end是目标位置
hanio(transit, str, end, number - 1);//借助A把n-1个盘子移动到C上
}
}
/** * @param str 起始位置 * @param transit 目标位置 **/
public static void move(char str, char transit) {
System.out.print(str+"->"+ transit + " ");
}
public static void main(String[] args) {
hanio('A', 'B', 'C', 1);
System.out.println();
hanio('A', 'B', 'C', 2);
System.out.println();
hanio('A', 'B', 'C', 3);
System.out.println();
hanio('A', 'B', 'C', 4);
}
}
边栏推荐
- 手搓一个“七夕限定”,用3D Engine 5分钟实现烟花绽放效果
- A Collection of Flutter Tutorials (2022 Edition)
- 汉诺塔怎么玩
- 小程序对接企业微信客服
- 抽奖/秒杀/竞价/评分/权威/投票,技术教你用合适的方法做好活动
- 用过Apifox这个API接口工具后,确实感觉postman有点鸡肋......
- Arduino框架下I2S控制ADC采样以及PWM输出示例解析
- CLS-PEG-DBCO,胆固醇-聚乙二醇-二苯基环辛炔,可用于改善循环时间
- SCA兼容性分析工具(ORACLE/MySQL/DB2--->MogDB/openGauss/PostgreSQL)
- Access Huawei game anti-addiction, click the anti-addiction pop-up window, the game crashes
猜你喜欢
汉诺塔怎么玩
【牛客刷题-SQL大厂面试真题】NO5.某宝店铺分析(电商模式)
未来已来,只是尚未流行
面试官:如何查看/etc目录下包含abc字符串的文件?
[UML] Summary of Information System Analysis and Design Knowledge Points
“蔚来杯“2022牛客暑期多校训练营4 N
COMSOL空气反应 模型框架
【自动微分实现】反向OO实现自动微分(Pytroch核心机制)
LeetCode 1403 Minimum subsequence in non-increasing order [greedy] HERODING's LeetCode road
用过Apifox这个API接口工具后,确实感觉postman有点鸡肋......
随机推荐
“蔚来杯“2022牛客暑期多校训练营4 N
密码设置有关方法:不能相同字母,不能为连续字符
This article sorts out the development of the main models of NLP
Billboard
正确使用Impala的invalidate metadata与refresh语句
【牛客刷题-SQL大厂面试真题】NO5.某宝店铺分析(电商模式)
智能电视可以打开小程序应用,再也不用头痛内存了
Systemui qsSetting添加新图标
PMP每日一练 | 考试不迷路-8.4(包含敏捷+多选)
代码越写越乱?那是因为你没用责任链!
sqlserver删除重复数据
Why is Luo Zhenyu's A-share dream so difficult to fulfill?
17种正则表达式
漏洞复现 - - - Alibaba Nacos权限认证绕过
使用SQLServer复制数据库
MySQL性能指标TPS\QPS\IOPS如何压测?
Cows 树状数组
LeetCode_299_猜数字游戏
redisTemplate存取List遇到的坑
永磁同步电机FOC驱动代码讲解