* queue. If necessary, it can be preinitialized, although you
* will need to accommodate that fact in other methods.
* @return PriorityQueue to be used by the algorithm
*/
protected PriorityQueue newPQ () {
return new ArrayHeap(new IntegerComparator());
}