public PriorityQueue() { _minHeap = new MinHeap <T>(); }
public PriorityQueue(List <T> items) { _minHeap = new MinHeap <T>(items); }