Uses of Class
cornell.cs211.SortedHeap

Uses of SortedHeap in cornell.cs211
 

Methods in cornell.cs211 that return SortedHeap
static
<T> SortedHeap<T>
SortedHeap.sortedArrayHeap(java.util.Comparator<? super T> comparator)
          Factory Method to create a SortedHeap using ArrayList with the specified comparator to determine the order in the heap
static
<T> SortedHeap<T>
SortedHeap.sortedArrayHeap(T d)
          Factory Method to create a SortedHeap using ArrayList
static
<T> SortedHeap<T>
SortedHeap.sortedListHeap(java.util.Comparator<? super T> comparator)
          Factory Method to create a SortedHeap using LinkedList with the specified comparator to determine the order in the heap
static
<T> SortedHeap<T>
SortedHeap.sortedListHeap(T d)
          Factory Method to create a SortedHeap using LinkedList