/** initialize your data structure here. */
 public MedianFinder()
 {
     minheap = new MinHeap <int>();
     maxheap = new MaxHeap <int>();;
 }