-
Notifications
You must be signed in to change notification settings - Fork 32
/
heap_implementation.js
103 lines (94 loc) · 3.21 KB
/
heap_implementation.js
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
/*
Author : Samir Paul
*/
// export { MinHeap }
class MinHeap {
constructor() {
this.heap_array = [];
}
/// returns size of the min heap
size() {
return this.heap_array.length;
}
/// returns if the heap is empty
empty() {
return (this.size() === 0);
}
/// insert a new value in the heap
push(value) {
this.heap_array.push(value);
this.up_heapify();
}
/// updates heap by up heapifying
up_heapify() {
var current_index = this.size() - 1;
while (current_index > 0) {
var current_element = this.heap_array[current_index];
var parent_index = Math.trunc((current_index - 1) / 2);
var parent_element = this.heap_array[parent_index];
if (parent_element[0] < current_element[0]) {
break;
}
else {
this.heap_array[parent_index] = current_element;
this.heap_array[current_index] = parent_element;
current_index = parent_index;
}
}
}
/// returns the top element (smallest value element)
top() {
return this.heap_array[0];
}
/// delete the top element
pop() {
if (this.empty() == false) {
var last_index = this.size() - 1;
this.heap_array[0] = this.heap_array[last_index];
this.heap_array.pop();
this.down_heapify();
}
}
/// updates heap by down heapifying
down_heapify() {
var current_index = 0;
var current_element = this.heap_array[0];
while (current_index < this.size()) {
var child_index1 = (current_index * 2) + 1;
var child_index2 = (current_index * 2) + 2;
if (child_index1 >= this.size() && child_index2 >= this.size()) {
break;
}
else if (child_index2 >= this.size()) {
let child_element1 = this.heap_array[child_index1];
if (current_element[0] < child_element1[0]) {
break;
}
else {
this.heap_array[child_index1] = current_element;
this.heap_array[current_index] = child_element1;
current_index = child_index1;
}
}
else {
var child_element1 = this.heap_array[child_index1];
var child_element2 = this.heap_array[child_index2];
if (current_element[0] < child_element1[0] && current_element[0] < child_element2[0]) {
break;
}
else {
if (child_element1[0] < child_element2[0]) {
this.heap_array[child_index1] = current_element;
this.heap_array[current_index] = child_element1;
current_index = child_index1;
}
else {
this.heap_array[child_index2] = current_element;
this.heap_array[current_index] = child_element2;
current_index = child_index2;
}
}
}
}
}
}