-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpriorityQueue.cpp
More file actions
108 lines (83 loc) · 1.92 KB
/
priorityQueue.cpp
File metadata and controls
108 lines (83 loc) · 1.92 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
#include<iostream>
#include<vector>
using namespace std;
class priorityQueue{
vector<int> pq;
public:
priorityQueue(){
}
void insert(int number){
pq.push_back(number);
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(isEmpty()){
return 0;
}
int ans=pq[0];
pq[0]=pq[pq.size()-1];
pq.pop_back();
int parentIndex=0;
int minIndex=parentIndex;
int childIndexleft=2*parentIndex+1;
int childIndexright=2*parentIndex+2;
while(childIndexleft<pq.size()){
if(pq[minIndex]>pq[childIndexleft]){
minIndex=childIndexleft;
}
if( childIndexright<pq.size()&& pq[minIndex]>pq[childIndexright]){
minIndex=childIndexright;
}
if(minIndex==parentIndex){
break;
}
int temp=pq[parentIndex];
pq[parentIndex]=pq[minIndex];
pq[minIndex]=temp;
parentIndex=minIndex;
childIndexleft=2*parentIndex+1;
childIndexright=2*parentIndex+2;
}
return ans;
}
bool isEmpty(){
return pq.size()==0;
}
int getSize(){
return pq.size();
}
int getMin(){
if(isEmpty()){
return 0;
}
else
return pq.front();
}
};
int main(){
priorityQueue p;
p.insert(100);
p.insert(10);
p.insert(15);
p.insert(4);
p.insert(17);
p.insert(21);
p.insert(67);
cout<<p.getSize()<<endl;
cout<<p.getMin()<<endl;
while(!p.isEmpty()){
cout<<p.removeMin()<<endl;
}
}