-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAVLTree.java
270 lines (224 loc) · 6.63 KB
/
AVLTree.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
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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
import java.util.LinkedList;
import java.util.Queue;
/**
* AVL Tree code from https://rosettacode.org/wiki/AVL_tree#Java
* used under GNU Free Documentation License 1.2.
*/
public class AVLTree {
public AVLNode root;
private static class AVLNode {
private int key;
private int balance;
private int height;
private AVLNode left;
private AVLNode right;
private AVLNode parent;
AVLNode(int key, AVLNode parent) {
this.key = key;
this.parent = parent;
}
}
public boolean insert(int key) {
if (root == null) {
root = new AVLNode(key, null);
return true;
}
AVLNode n = root;
while (true) {
if (n.key == key)
return false;
AVLNode parent = n;
boolean goLeft = n.key > key;
n = goLeft ? n.left : n.right;
if (n == null) {
if (goLeft) {
parent.left = new AVLNode(key, parent);
} else {
parent.right = new AVLNode(key, parent);
}
rebalance(parent);
break;
}
}
return true;
}
private void delete(AVLNode AVLNode) {
if (AVLNode.left == null && AVLNode.right == null) {
if (AVLNode.parent == null) {
root = null;
} else {
AVLNode parent = AVLNode.parent;
if (parent.left == AVLNode) {
parent.left = null;
} else {
parent.right = null;
}
rebalance(parent);
}
return;
}
if (AVLNode.left != null) {
AVLNode child = AVLNode.left;
while (child.right != null) child = child.right;
AVLNode.key = child.key;
delete(child);
} else {
AVLNode child = AVLNode.right;
while (child.left != null) child = child.left;
AVLNode.key = child.key;
delete(child);
}
}
public void delete(int delKey) {
if (root == null)
return;
AVLNode child = root;
while (child != null) {
AVLNode AVLNode = child;
child = delKey >= AVLNode.key ? AVLNode.right : AVLNode.left;
if (delKey == AVLNode.key) {
delete(AVLNode);
return;
}
}
}
public boolean find(int key) {
if(root == null) {
return false;
}
AVLNode child = root;
while(child != null) {
AVLNode AVLNode = child;
child = key >= AVLNode.key ? AVLNode.right : AVLNode.left;
if(key == AVLNode.key) {
return true;
}
}
return false;
}
private void rebalance(AVLNode n) {
setBalance(n);
if (n.balance == -2) {
if (height(n.left.left) >= height(n.left.right))
n = rotateRight(n);
else
n = rotateLeftThenRight(n);
} else if (n.balance == 2) {
if (height(n.right.right) >= height(n.right.left))
n = rotateLeft(n);
else
n = rotateRightThenLeft(n);
}
if (n.parent != null) {
rebalance(n.parent);
} else {
root = n;
}
}
private AVLNode rotateLeft(AVLNode a) {
AVLNode b = a.right;
b.parent = a.parent;
a.right = b.left;
if (a.right != null)
a.right.parent = a;
b.left = a;
a.parent = b;
if (b.parent != null) {
if (b.parent.right == a) {
b.parent.right = b;
} else {
b.parent.left = b;
}
}
setBalance(a, b);
return b;
}
private AVLNode rotateRight(AVLNode a) {
AVLNode b = a.left;
b.parent = a.parent;
a.left = b.right;
if (a.left != null)
a.left.parent = a;
b.right = a;
a.parent = b;
if (b.parent != null) {
if (b.parent.right == a) {
b.parent.right = b;
} else {
b.parent.left = b;
}
}
setBalance(a, b);
return b;
}
private AVLNode rotateLeftThenRight(AVLNode n) {
n.left = rotateLeft(n.left);
return rotateRight(n);
}
private AVLNode rotateRightThenLeft(AVLNode n) {
n.right = rotateRight(n.right);
return rotateLeft(n);
}
private int height(AVLNode n) {
if (n == null)
return -1;
return n.height;
}
private void setBalance(AVLNode... AVLNodes) {
for (AVLNode n : AVLNodes) {
reheight(n);
n.balance = height(n.right) - height(n.left);
}
}
public void printBalance() {
printBalance(root);
}
private void printBalance(AVLNode n) {
if (n != null) {
printBalance(n.left);
System.out.printf("%s ", n.balance);
printBalance(n.right);
}
}
private void reheight(AVLNode AVLNode) {
if (AVLNode != null) {
AVLNode.height = 1 + Math.max(height(AVLNode.left), height(AVLNode.right));
}
}
public int printHeight(AVLNode root) {
if (root == null) return 0;
Queue<AVLNode> q = new LinkedList<AVLNode>();
q.add(root);
int height = 0;
while (true) {
int AVLNodeCount = q.size();
if (AVLNodeCount == 0)
break;
while (AVLNodeCount > 0) {
AVLNode AVLNode = q.peek();
q.remove();
if (AVLNode.left != null)
q.add(AVLNode.left);
if (AVLNode.right != null)
q.add(AVLNode.right);
AVLNodeCount--;
}
height++;
}
return height;
}
public static void main(String[] args) {
AVLTree tree = new AVLTree();
System.out.println("Inserting values 1 to 10");
for (int i = 1; i < 10; i++)
tree.insert(i);
System.out.print("Printing balance: ");
tree.printBalance();
System.out.println("Finding 1: " + tree.find(1));
System.out.println("Finding 5: " + tree.find(5));
System.out.println("Finding 8: " + tree.find(8));
System.out.println("Finding 0: " + tree.find(0));
System.out.println("");
tree.printBalance();
}
}