package correct_java_programs; import java.util.*; /* * To change this template, choose Tools | Templates * and open the template in the editor. */ /** * * @author derricklin */ public class HANOI { // default start=1, end=3 public static List> hanoi(int height, int start, int end) { ArrayList> steps = new ArrayList>(); if (height > 0) { PriorityQueue crap_set = new PriorityQueue(); crap_set.add(1); crap_set.add(2); crap_set.add(3); crap_set.remove(start); crap_set.remove(end); int helper = crap_set.poll(); steps.addAll(hanoi(height-1, start, helper)); steps.add(new Pair(start, end)); steps.addAll(hanoi(height-1, helper, end)); } return steps; } public static class Pair { private F first; //first member of pair private S second; //second member of pair public Pair(F first, S second) { this.first = first; this.second = second; } public void setFirst(F first) { this.first = first; } public void setSecond(S second) { this.second = second; } public F getFirst() { return first; } public S getSecond() { return second; } @Override public String toString() { return "(" + String.valueOf(first) + ", " + String.valueOf(second) + ")"; } } }