public PriorityQueue(T[] arr) { _minHeap = new MinHeap <T>(arr); }
public PriorityQueue() { _minHeap = new MinHeap <T>(); }