汉诺塔 发表于 2018-10-04 | 分类于 数据结构与算法 , 题目汇总 1234567891011121314151617public class hanoi { public static void hanoi(int n){ if(n > 0) { fun(n, ”LEFT”, ”MID”, ”RIGHT”); } } public static void fun(int n, String from, String mid, String to) { if(n == 1) { System.out.println(“move from ” + from + ” to ” + to); } else { fun(n-1, from, to, mid); fun(1, from, mid, to); fun(n-1, mid, from, to); } } }