Example #1
0
 public BinaryHeapPriorityQueue() :
     this(MapFactory <E, Entry <E> > .hashMapFactory <E, Entry <E> >())
 {
 }
Example #2
0
 public BinaryHeapPriorityQueue <E> DeepCopy()
 {
     return(DeepCopy(MapFactory <E, Entry <E> > .hashMapFactory <E, Entry <E> >()));
 }