Esempio n. 1
0
 public KthLargest(int capacity)
 {
     this.customHeaps = new MaxHeap(capacity);
 }
Esempio n. 2
0
 public PriorityQueueWithHeap(int capacity)
 {
     customHeaps = new MaxHeap(capacity);
 }