edu.jhu.ece.iacl.jist.structures.data
Class BinaryMaxHeap<E extends java.lang.Comparable<? super E>>

java.lang.Object
  extended by java.util.AbstractCollection<E>
      extended by java.util.AbstractQueue<E>
          extended by java.util.PriorityQueue<E>
              extended by edu.jhu.ece.iacl.jist.structures.data.BinaryMaxHeap<E>
Type Parameters:
E - Comparable class
All Implemented Interfaces:
java.io.Serializable, java.lang.Iterable<E>, java.util.Collection<E>, java.util.Queue<E>

public class BinaryMaxHeap<E extends java.lang.Comparable<? super E>>
extends java.util.PriorityQueue<E>

Binary Max Heap uses Java implemention with reverse comparator.

Author:
Blake Lucas
See Also:
Serialized Form

Constructor Summary
BinaryMaxHeap()
          Instantiates a new binary max heap.
 
Method Summary
 
Methods inherited from class java.util.PriorityQueue
add, clear, comparator, contains, iterator, offer, peek, poll, remove, size, toArray, toArray
 
Methods inherited from class java.util.AbstractQueue
addAll, element, remove
 
Methods inherited from class java.util.AbstractCollection
containsAll, isEmpty, removeAll, retainAll, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface java.util.Collection
containsAll, equals, hashCode, isEmpty, removeAll, retainAll
 

Constructor Detail

BinaryMaxHeap

public BinaryMaxHeap()
Instantiates a new binary max heap.