[Leetcode]295. Find Median from Data Stream

本文介绍了一种高效计算流数据中位数的方法,通过使用两个堆(一个最大堆和一个最小堆)来实时维护数据流中的中位数,实现了O(logn)的时间复杂度进行插入操作,并能在O(1)时间内获取当前数据流的中位数。
部署运行你感兴趣的模型镜像

Straight-forward solution.

O(n) space, O(1)(get) + O(nlogn)(sort the array before getting median) time solution is straight forward.

Just stores all the values into an array and sort the whole array before finding the medium.

Or we can always keep the array sorted by inserting the number at the right place. This method is good when the number of getMedians is greater than insertion.

But both of them are inefficient.

Two-heap solution

Obviously we are doing redundant works here. We only want the median but we are sorting the whole array. That includes unnecessary work.

In order to prevent from doing useless work, we have to use some data structure to give us the medians without sorting the whole array. Considering that medians is mainly determined by the middle 2 numbers in the input stream, what we need to know is the MAXMIUM of the smaller half and the MINIMUM of the larger half. Thus we could store the whole input stream into 2 heaps in which each contains half of the stream. And left half should be stored in a max-heap, which allows us to get the maximum of the smaller half, right half should be stored in a min-heap, which allows us to get the minimum of the greater half. And combines the 2 will give us the median given the size of the input stream (odd or even).

In this way, the time of get the median will be O(1) for get, O(logn) for insert. Space is still O(n). Specifically the time for insertion is O(5 * logn) in the worst case, the condition is: when the 2 heap is of the same size before we insert a number, then it takes O(2 * logn) to insert the number, take out the max and repercolate the the max. After that, it takes another O(3 * logn) to insert the number to right, take the min from right, repercolate min of right and insert the min to left.

Also keep in mind that when the total number of data is odd, we keep the smaller half heap to hold 1 more element than the greater half.

public class MedianFinder {
    int count;
    PriorityQueue<Integer> rightHalf;
    // Use a custom comparator to construct a maxHeap.
    PriorityQueue<Integer> leftHalf;

    public MedianFinder() {
        this.rightHalf = new PriorityQueue<Integer>();
        // Use a custom comparator to construct a maxHeap.
        this.leftHalf = new PriorityQueue<Integer>(new Comparator<Integer>() {
            @Override
            public int compare(Integer a, Integer b) {
                return b.compareTo(a);
            }
        });
        this.count = 0;
    }

    public void addNum(int num) {
        if (this.count == 0) { // Both heap is empty, add number to left
            this.leftHalf.offer(num);
        } else {
            // Always add to leftHalf, then take the maximum from leftHalf and add it to rightHalf.
            this.leftHalf.offer(num);
            this.rightHalf.offer(this.leftHalf.poll());

            // This can leads to rightHalf larger than leftHalf.
            // If rightHalf contains more element than left half, rebalance the heaps.
            if (this.rightHalf.size() > this.leftHalf.size()) {
                this.leftHalf.offer(this.rightHalf.poll());
            }
        }
        this.count++;
    }

    public double findMedian() {
        if ((this.count & 1) != 0) { // odd number of elements
            return this.leftHalf.peek();
        } else {
            return (Double.valueOf(this.leftHalf.peek()) + Double.valueOf(this.rightHalf.peek())) / 2;
        }
    }
}

您可能感兴趣的与本文相关的镜像

Stable-Diffusion-3.5

Stable-Diffusion-3.5

图片生成
Stable-Diffusion

Stable Diffusion 3.5 (SD 3.5) 是由 Stability AI 推出的新一代文本到图像生成模型,相比 3.0 版本,它提升了图像质量、运行速度和硬件效率

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

耀凯考前突击大师

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值