-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmin_Heap.cpp
171 lines (150 loc) · 3.04 KB
/
min_Heap.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
/*Nikhil*/
#include <bits/stdc++.h>
using namespace std;
class minHeap
{
// Members of min-heap
int capacity;
int sz;
int *heap;
public:
minHeap(int cap)
{
this->capacity = cap;
this->sz = 0;
this->heap = new int[capacity];
}
int left(int i)
{
return 2 * i + 1;
}
int right(int i)
{
return 2 * i + 2;
}
int parent(int i)
{
return (i - 1) / 2;
}
bool isEmpty()
{
return sz == 0;
}
int size()
{
return sz;
}
void insert(int num)
{
if (sz == capacity)
return;
sz++;
heap[sz - 1] = num;
// up-heapify
int i = sz - 1;
while (i != 0 && heap[parent(i)] > heap[i])
{
swap(heap[parent(i)], heap[i]);
i = parent(i);
}
}
/* Recursion version of downHeapify
void downHeapify(int i)
{
int l = left(i);
int r = right(i);
int smallest = i;
if (l<sz && heap[l]<heap[smallest])
{
smallest = l;
}
if (r<sz && heap[r] < heap[smallest])
{
smallest = r;
}
if (smallest!=i)
{
swap(heap[i], heap[smallest]);
downHeapify(smallest);
}
}*/
// iteration version of down-heapify
void downHeapify(int i)
{
bool flag = true;
while (flag)
{
int l = left(i);
int r = right(i);
int smallest = i;
if (l < sz && heap[l] < heap[smallest])
{
smallest = l;
}
if (r < sz && heap[r] < heap[smallest])
{
smallest = r;
}
if (smallest != i)
{
swap(heap[i], heap[smallest]);
i = smallest;
}
else
{
flag = false;
}
}
}
// -1 return represents heap is empty,
// replace it with INT_MIN if negative elements exists in heap
int extractMin()
{
if (sz == 0)
{
return -1;
}
else if (sz == 1)
{
sz--;
return heap[0];
}
sz--;
swap(heap[0], heap[sz]);
downHeapify(0);
return heap[sz];
}
// level-wise printing
void print()
{
int i = 0;
int levelNum = 1;
while (i < sz)
{
int j = 0;
while (i < sz && j < levelNum)
{
cout << heap[i] << " ";
j++;
i++;
}
cout << "\n";
levelNum *= 2;
}
}
};
int main()
{
minHeap myheap(15);
myheap.insert(10);
myheap.insert(15);
myheap.insert(2);
myheap.insert(50);
myheap.insert(100);
myheap.insert(55);
myheap.insert(20);
myheap.print();
cout << "min num is " << myheap.extractMin() << endl;
myheap.print();
return 0;
}