forked from oviiii-m/algorithms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathremovemin.cpp
More file actions
115 lines (94 loc) · 2.36 KB
/
removemin.cpp
File metadata and controls
115 lines (94 loc) · 2.36 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
#include <iostream>
#include <climits>
using namespace std;
#include <vector>
#include <iostream>
using namespace std;
class PriorityQueue {
vector<int> pq;
public:
bool isEmpty() {
return pq.size() == 0;
}
int getSize() {
return pq.size();
}
int getMin() {
if (isEmpty()) {
return 0;
}
return pq[0];
}
void insert(int element) {
pq.push_back(element);
int childIndex = pq.size() - 1;
while (childIndex > 0) {
int parentIndex = (childIndex - 1) / 2;
if (pq[childIndex] < pq[parentIndex]) {
int temp = pq[childIndex];
pq[childIndex] = pq[parentIndex];
pq[parentIndex] = temp;
} else {
break;
}
childIndex = parentIndex;
}
}
int removeMin()
{
if(pq.empty()){
return 0;
}
int ans = pq[0];
pq[0] = pq[pq.size()-1];
pq.pop_back();
int pi = 0;
int lci = (pi*2)+1;
int rci = (pi*2)+2;
while(lci < pq.size()){
int maxindex = pi;
if(pq[maxindex] > pq[lci]){
maxindex = lci;
}
if(pq[rci] < pq[maxindex]){
maxindex = rci;
}
if(maxindex == pi){
break;
}
swap(pq[maxindex], pq[pi]);
pi=maxindex;
lci = (pi*2)+1;
rci = (pi*2)+2;
}
return ans;
}
};
int main() {
PriorityQueue pq;
int choice;
cin >> choice;
while (choice != -1) {
switch (choice) {
case 1: // insert
int element;
cin >> element;
pq.insert(element);
break;
case 2: // getMin
cout << pq.getMin() << "\n";
break;
case 3: // removeMax
cout << pq.removeMin() << "\n";
break;
case 4: // size
cout << pq.getSize() << "\n";
break;
case 5: // isEmpty
cout << (pq.isEmpty() ? "true\n" : "false\n");
default:
return 0;
}
cin >> choice;
}
}