-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathFind_Median_from_Data_Stream.cpp
58 lines (53 loc) · 1.6 KB
/
Find_Median_from_Data_Stream.cpp
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
class MedianFinder {
priority_queue<int> maxHeap;
priority_queue<int, vector<int>, greater<int>> minHeap;
double currMedian = 0.0;
public:
// Adds a number into the data structure.
void addNum(int num) {
int leftSize = maxHeap.size();
int rightSize = minHeap.size();
int diff = leftSize - rightSize;
switch(diff) {
case 0:
if(num < currMedian) { // or (num <= currMedian)
maxHeap.push(num);
currMedian = maxHeap.top();
} else {
minHeap.push(num);
currMedian = minHeap.top();
}
break;
case 1:
if(num < currMedian) { // or (num <= currMedian)
maxHeap.push(num);
minHeap.push(maxHeap.top());
maxHeap.pop();
} else {
minHeap.push(num);
}
currMedian = (maxHeap.top() + minHeap.top()) / 2.0;
break;
case -1:
if(num < currMedian) { // or (num <= currMedian)
maxHeap.push(num);
} else {
minHeap.push(num);
maxHeap.push(minHeap.top());
minHeap.pop();
}
currMedian = (maxHeap.top() + minHeap.top()) / 2.0;
break;
default:
break;
}
}
// Returns the median of current data stream
double findMedian() {
return currMedian;
}
};
// Your MedianFinder object will be instantiated and called as such:
// MedianFinder mf;
// mf.addNum(1);
// mf.findMedian();