摘要: 不论多少盘,都看成是两个盘在移动,只需要把上面的两个盘移动好就行。 public static void hanoiTower(int num,char a,char b ,char c) { if(num == 1) { System.out.println("第1个盘从"+a + " -> " 阅读全文
posted @ 2022-09-17 17:13 皮豪 阅读(43) 评论(0) 推荐(0) 编辑