数据流中的中位数

如何得到一个数据流中的中位数?如果从数据流中读出奇数个数值,那么中位数就是所有数值排序之后位于中间的数值。如果从数据流中读出偶数个数值,那么中位数就是所有数值排序之后中间两个数的平均值。我们使用Insert()方法读取数据流,使用GetMedian()方法获取当前读取数据的中位数。

public class Solution {
    public PriorityQueue minHeap = new PriorityQueue();
    public PriorityQueue maxHeap = new PriorityQueue(new Comparator(){
        public int compare(Integer a, Integer b){
            return b-a;
        }
    });
    int len=0;
    
    public void Insert(Integer num) {
        if(len%2==0){
            minHeap.offer(num);
            maxHeap.offer(minHeap.poll());
        }else{
            maxHeap.offer(num);
            minHeap.offer(maxHeap.poll());
        }
        len++;
    }

    public Double GetMedian() {
        if(len%2==0){
            return Double.valueOf((minHeap.peek()+maxHeap.peek())/2.0);
        }else{
            return Double.valueOf(maxHeap.peek());
        }
    }
}

你可能感兴趣的:(数据流中的中位数)