Interface AdaptablePriorityQueue<K,V>

Type Parameters:
K - The key type (keys must be unique and comparable)
V - The value type stored with each entry
All Superinterfaces:
PriorityQueue<K,V>
All Known Implementing Classes:
HeapAdaptablePriorityQueue

public interface AdaptablePriorityQueue<K,V> extends PriorityQueue<K,V>
Interface for the adaptable priority queue ADT. The Entry instance returned by the insert method can later be used to remove the entry, or to modify that entry's key or value.