|
| 1 | +package ch_23.exercise23_05; |
| 2 | + |
| 3 | +/** |
| 4 | + * A binary heap for inserting and deleting keys while maintaining |
| 5 | + * the sorted order |
| 6 | + * <p> |
| 7 | + * This Heap is for sorting Objects that implement the Comparable interface |
| 8 | + * |
| 9 | + * @param <E> The type of objects contained in the Heap |
| 10 | + */ |
| 11 | +public class ComparableHeap<E extends Comparable<E>> { |
| 12 | + private java.util.ArrayList<E> list = new java.util.ArrayList<>(); |
| 13 | + |
| 14 | + /** |
| 15 | + * Create a default heap |
| 16 | + */ |
| 17 | + public ComparableHeap() { |
| 18 | + } |
| 19 | + |
| 20 | + /** |
| 21 | + * Create a heap from an array of objects |
| 22 | + */ |
| 23 | + public ComparableHeap(E[] objects) { |
| 24 | + for (int i = 0; i < objects.length; i++) |
| 25 | + add(objects[i]); |
| 26 | + } |
| 27 | + |
| 28 | + /** |
| 29 | + * Add a new object into the heap |
| 30 | + */ |
| 31 | + public void add(E newObject) { |
| 32 | + list.add(newObject); // Append to the heap |
| 33 | + int currentIndex = list.size() - 1; // The index of the last node |
| 34 | + |
| 35 | + while (currentIndex > 0) { |
| 36 | + int parentIndex = (currentIndex - 1) / 2; |
| 37 | + // Swap if the current object is greater than its parent |
| 38 | + if (list.get(currentIndex).compareTo( |
| 39 | + list.get(parentIndex)) > 0) { |
| 40 | + E temp = list.get(currentIndex); |
| 41 | + list.set(currentIndex, list.get(parentIndex)); |
| 42 | + list.set(parentIndex, temp); |
| 43 | + } else |
| 44 | + break; // The tree is a heap now |
| 45 | + |
| 46 | + currentIndex = parentIndex; |
| 47 | + } |
| 48 | + } |
| 49 | + |
| 50 | + /** |
| 51 | + * Remove the root from the heap |
| 52 | + */ |
| 53 | + public E remove() { |
| 54 | + if (list.size() == 0) return null; |
| 55 | + |
| 56 | + E removedObject = list.get(0); |
| 57 | + list.set(0, list.get(list.size() - 1)); |
| 58 | + list.remove(list.size() - 1); |
| 59 | + |
| 60 | + int currentIndex = 0; |
| 61 | + while (currentIndex < list.size()) { |
| 62 | + int leftChildIndex = 2 * currentIndex + 1; |
| 63 | + int rightChildIndex = 2 * currentIndex + 2; |
| 64 | + |
| 65 | + // Find the maximum between two children |
| 66 | + if (leftChildIndex >= list.size()) break; // The tree is a heap |
| 67 | + int maxIndex = leftChildIndex; |
| 68 | + if (rightChildIndex < list.size()) { |
| 69 | + if (list.get(maxIndex).compareTo( |
| 70 | + list.get(rightChildIndex)) < 0) { |
| 71 | + maxIndex = rightChildIndex; |
| 72 | + } |
| 73 | + } |
| 74 | + |
| 75 | + // Swap if the current node is less than the maximum |
| 76 | + if (list.get(currentIndex). |
| 77 | + |
| 78 | + compareTo( |
| 79 | + list.get(maxIndex)) < 0) { |
| 80 | + E temp = list.get(maxIndex); |
| 81 | + list.set(maxIndex, list.get(currentIndex)); |
| 82 | + list.set(currentIndex, temp); |
| 83 | + currentIndex = maxIndex; |
| 84 | + } else |
| 85 | + break; // The tree is a heap |
| 86 | + } |
| 87 | + |
| 88 | + return removedObject; |
| 89 | + } |
| 90 | + |
| 91 | + /** |
| 92 | + * Get the number of nodes in the tree |
| 93 | + */ |
| 94 | + public int getSize() { |
| 95 | + return list.size(); |
| 96 | + } |
| 97 | +} |
0 commit comments