This repository has been archived by the owner on Apr 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MinHeap.java
146 lines (84 loc) · 2.35 KB
/
MinHeap.java
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
public class MinHeap {
// min Heap has the root as the smallest value element and value grows as we move downwards
int capacity = 10;
int size = 0;
int[] items = new int[capacity];
public int getLeftChildIndex(int parentIndex) {
return 2*parentIndex + 1;
}
public int getRightChildIndex(int parentIndex) {
return 2*parentIndex + 2;
}
public int getParentIndex(int childIndex) {
return (childIndex-1)/2;
}
public boolean hasLeftChild(int index) {
return getLeftChildIndex(index) < size;
}
public boolean hasRightChild(int index) {
return getRightChildIndex(index) < size;
}
public boolean hasParent(int index) {
return getParentIndex(index) >=0;
}
public int leftChild(int index) {
return items[getLeftChildIndex(index)];
}
public int rightChild(int index) {
return items[getRightChildIndex(index)];
}
public int parent(int index) {
return items[getParentIndex(index)];
}
public int peek() {
if(size==0)
throw new IllegalStateException();
return items[0];
}
public int poll() {
// remove minimum value node
// 1. Remove the root by replacing it's value by the last indexed item in array
// 2. Heapify down
if(size==0)
throw new IllegalStateException();
int item = items[0];
items[0] = items[size-1];
size--;
heapifyDown();
return item;
}
public void swap(int index1, int index2) {
int temp = items[index1];
items[index1] = items[index2];
items[index2] = temp;
}
public void add(int item) {
// adding of elements is always done in the empty position in the last nodes of the heap
items[size] = item;
size++;
heapifyUp();
}
public void heapifyUp() {
int index = size - 1;
while(hasParent(index) && parent(index)>items[index]) {
// order needs to be adjusted
swap(getParentIndex(index),index);
index = getParentIndex(index);
}
}
public void heapifyDown() {
int index = 0;
while(hasLeftChild(index)) {
int smallerChildIndex = getLeftChildIndex(index);
if(hasRightChild(index) && rightChild(index)<leftChild(index)) {
smallerChildIndex = getRightChildIndex(index);
}
if(items[index]<items[smallerChildIndex])
break;
else {
swap(index,smallerChildIndex);
}
index = smallerChildIndex;
}
}
}