Browse Source

Adding removeMin and peekMin abstract methods back into priorityqueue base class.

master
Charles Reid 8 years ago
parent
commit
64469f4641
  1. 10
      priority-queues/PriorityQueueBase.java

10
priority-queues/PriorityQueueBase.java

@ -52,12 +52,12 @@ public abstract class PriorityQueueBase<T> { @@ -52,12 +52,12 @@ public abstract class PriorityQueueBase<T> {
/** Add an item to the priority queue. */
public abstract void add(int k, T v);
///** Remove the minimum item from the priority queue. */
//public abstract T removeMin();
/** Remove the minimum item from the priority queue. */
public abstract T removeMin();
///** Peek at the minimum item in the priority queue
// * w/o removing it.*/
//public abstract T peekMin();
/** Peek at the minimum item in the priority queue
* w/o removing it.*/
public abstract T peekMin();
}

Loading…
Cancel
Save