Uses of Interface
net.datastructures.PriorityQueue

Uses of PriorityQueue in net.datastructures
 

Subinterfaces of PriorityQueue in net.datastructures
 interface AdaptablePriorityQueue<K,V>
          Interface for an adaptable priority queue.
 

Classes in net.datastructures that implement PriorityQueue
 class HeapAdaptablePriorityQueue<K,V>
          Realization of an adaptable priority queue by means of a heap.
 class HeapPriorityQueue<K,V>
          Realization of a priority queue by means of a heap.
 class SortedListAdaptablePriorityQueue<K,V>
          Implementation of an adaptable priority queue by means of a sorted list.
 class SortedListPriorityQueue<K,V>
          Realization of a priority queue by means of a sorted node list in nondecreasing order.