-
Notifications
You must be signed in to change notification settings - Fork 77
/
Copy pathmedian_running_stream.cpp
57 lines (54 loc) · 1007 Bytes
/
median_running_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
#include<iostream>
#include<queue>
using namespace std;
int main(){
priority_queue<int>leftheap;
priority_queue<int, vector<int>, greater<int>>rightheap;
int d;
cin>>d;
float med= d;
leftheap.push(d);
cout<<"Median is "<<med;
cin>>d;
while(d!=-1){
if(leftheap.size()>rightheap.size()){
if(d<med){
rightheap.push(leftheap.top());
leftheap.pop();
leftheap.push(d);
med= leftheap.top();
}
else{
rightheap.push(d);
med= rightheap.top();
}
med= (leftheap.top() +rightheap.top())/2.0;
}
else if(leftheap.size()==rightheap.size()){
if(d<med){
leftheap.push(d);
med= leftheap.top();
}
else{
rightheap.push(d);
med= rightheap.top();
}
}
else{
if(d>med){
leftheap.push(rightheap.top());
rightheap.pop();
rightheap.push(d);
med= rightheap.top();
}
else{
leftheap.push(d);
med= leftheap.top();
}
med= (leftheap.top()+ rightheap.top())/2;
}
cout<<"Med"<<med<<endl;
cin>>d;
}
return 0;
}