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