コード例 #1
0
 public KthLargest(int capacity)
 {
     this.customHeaps = new MaxHeap(capacity);
 }
コード例 #2
0
 public PriorityQueueWithHeap(int capacity)
 {
     customHeaps = new MaxHeap(capacity);
 }