[LeetCode] Find Median from Data Stream

295. Find Median from Data Stream

The median is the middle value in an ordered integer list. If the size of the list is even, there is no middle value and the median is the mean of the two middle values.

  • For example, for arr = [2,3,4], the median is 3.
  • For example, for arr = [2,3], the median is (2 + 3) / 2 = 2.5.

Implement the MedianFinder class:

  • MedianFinder() initializes the MedianFinder object.
  • void addNum(int num) adds the integer num from the data stream to the data structure.
  • double findMedian() returns the median of all elements so far. Answers within 10-5 of the actual answer will be accepted.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
class MedianFinder {
priority_queue<int, vector<int>, greater<int>> left;
priority_queue<int, vector<int>, less<int>> right;
bool odd;
public:
MedianFinder(): odd(false) {}

void addNum(int num) {
odd = !odd;
if(odd) {
right.push(num);
left.push(right.top());
right.pop();
} else {
if(left.top() <= num) {
right.push(num);
} else {
right.push(left.top());
left.push(num);
left.pop();
}
}
}

double findMedian() {
return odd ? left.top() / 2.0 : (left.top() + right.top()) / 2.0;
}
};

/**
* Your MedianFinder object will be instantiated and called as such:
* MedianFinder* obj = new MedianFinder();
* obj->addNum(num);
* double param_2 = obj->findMedian();
*/

Follow up

  • we can design an array [0 … 100] and count property. we can find median in O(1)
  • we also can design an array [0 … 100] and count and two heaps like above solution.
Author: Song Hayoung
Link: https://songhayoung.github.io/2022/02/07/PS/LeetCode/find-median-from-data-stream/
Copyright Notice: All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.