コード例 #1
0
 /** initialize your data structure here. */
 public MedianFinder()
 {
     minheap = new MinHeap <int>();
     maxheap = new MaxHeap <int>();;
 }