-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path08maxHeap_using_array.cpp
105 lines (94 loc) · 2.22 KB
/
08maxHeap_using_array.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
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
#include<iostream>
using namespace std;
class MaxHeap{
public:
int idx;
int arr[50];
MaxHeap(){
this->idx = 1;
}
int top(){
if(idx == 1) {
cout << "Heap is empty!" << endl;
return -1;
}
return arr[1];
}
int size(){
return idx-1;
}
void push(int val){
if(idx >= 50) {
cout << "Heap is full!" << endl;
return;
}
arr[idx] = val;
int i = idx;
idx++;
while(i!=1){
//check with parent if it is greater
if(arr[i] > arr[i/2]){
swap(arr[i], arr[i/2]);
}else break;
i = i/2;
}
}
int pop(){
if(idx<1){
cout << "Heap is empty!" << endl;
return -1;
}
idx--;
int top = arr[1];
arr[1] = arr[idx];
int i = 1;
while(true){
int left_child = (2*i);
int right_child = (2*i) + 1;
int n = size();
if(left_child>n) break;
if(right_child>n){
if(arr[i]<arr[left_child]){
swap(arr[i],arr[left_child]);
i = left_child;
}
break;
}
if(arr[left_child] > arr[right_child]){
if(arr[i]<arr[left_child]){
swap(arr[i],arr[left_child]);
i = left_child;
}else break;
}else{
if(arr[i]<arr[right_child]){
swap(arr[i],arr[right_child]);
i = right_child;
}else break;
}
}
return top;
}
void print(){//print level order traversal of complete binary tree
for(int i=1;i<idx;i++){
cout<<arr[i]<<" ";
}
cout<<endl;
}
};
int main(){
MaxHeap pq;
pq.push(10);
pq.push(20);
cout<<"Top ele: "<<pq.top()<<endl;
pq.push(11);
pq.push(30);
pq.push(40);
pq.push(22);
pq.push(4);
pq.push(7);
cout<<"Top ele: "<<pq.top()<<endl;
cout<<pq.size()<<endl;
pq.print();
cout<<pq.pop()<<endl;
pq.print();
}