Find Median from Data Stream
Median is the middle value in an ordered integer list. If the size of the list is even, there is no middle value. So the median is the mean of the two middle value.
[2,3,4]
, the median is3
[2,3]
, the median is(2 + 3) / 2 = 2.5
Design a data structure that supports the following two operations:
void addNum(int num) - Add a integer number from the data stream to the data structure.
double findMedian() - Return the median of all elements so far.
For example:
分析
用俩堆,每个各装一半,每次都是先入大堆,大堆再分给小堆。 除非大堆小了,再调整回去。
只是小堆都是负数。然后始终保持大堆大一个
Last updated