-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathBinaryTree.java
466 lines (422 loc) · 12 KB
/
BinaryTree.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
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
import java.util.LinkedList;
/**
* Algorithms on binary trees:
* +--------------------+------------------------------------------------------+
* | Method Name | Description |
* +--------------------+------------------------------------------------------+
* | find | given a node value, finds the node in tree using dfs |
* | printPreOrder | Pre-order traversal |
* | printInOrder | In-order traversal |
* | printPostOrder | post-order traversal |
* | isBST | checks if tree is a BST |
* | getHeight | gets the height of the BST |
* | isTreeBalanced | checks if the tree is height balanced |
* | getLCA | determines the Lowest Common Ancestor of two nodes |
* | printLevelWise | prints the tree level wise |
* | printLevelAverage | prints the average value for each level in tree |
* | getInOrderSuccessor| determines the in-order successor for a node |
* +-------------------+------------------------------------------------------+
*/
public class BinaryTree {
Node root;
public BinaryTree(Node root){
this.root = root;
}
/**
* Retrieves the first node found in the tree for the given value using DFS
* @param value the node value
* @return a node possessing the value, null if not present in tree
*/
public Node find(Node subtree, int value) {
/* base case: not found */
if (subtree == null) {
return null;
}
int curr = subtree.value;
if (curr == value) {
return subtree;
}
/* check if found in left subtree */
Node leftAns = find(subtree.left, value);
if (leftAns != null) {
return leftAns;
}
/* check if found in right subtree */
Node rightAns = find(subtree.right, value);
if (rightAns != null) {
return rightAns;
}
return null; // if value not present in subtree
}
public Node find(int value) {
return find(root, value);
}
/**
* Prints tree in Pre-order traversal
*/
public void printPreOrder(Node node) {
System.out.print(node + " ");
if (node.left != null) {
printPreOrder(node.left);
}
if (node.right != null) {
printPreOrder(node.right);
}
}
public void printPreOrder() {
printPreOrder(root);
}
/**
* Prints tree in In-order traversal
*/
public void printInOrder(Node node) {
if (node.left != null) {
printInOrder(node.left);
}
System.out.print(node + " ");
if (node.right != null) {
printInOrder(node.right);
}
}
public void printInOrder() {
printInOrder(root);
}
/**
* Prints tree in Post-order traversal
*/
public void printPostOrder(Node node){
if (node.left != null) {
printPostOrder(node.left);
}
if (node.right != null) {
printPostOrder(node.right);
}
System.out.print(node + " ");
}
public void printPostOrder() {
printPostOrder(root);
}
/**
* Determines if tree is a BST
* @param subtree root node of subtree
* @param min min value for range
* @param max max value of range
* @return true if subtree is a BST, false otherwise
*/
public boolean isBST(Node subtree, int min, int max) {
if (subtree == null) {
return true; // empty tree is a BST
}
int value = subtree.value;
/* if value is within range */
if (value>min && value<=max){
return (isBST(subtree.left, min, value) &&
isBST(subtree.right, value, max));
}
else {
return false;
}
}
public boolean isBST() {
return isBST(root, Integer.MIN_VALUE, Integer.MAX_VALUE);
}
/**
* Determines the height of the subtree
* @param subtree root node of subtree
* @return height of subtree
*/
public int getHeight(Node subtree) {
if (subtree == null) {
return 0;
}
return Math.max(getHeight(subtree.left), getHeight(subtree.right)) + 1;
}
/**
* Checks if tree is a balanced tree. A tree is balanced if its subtrees do
* not differ more than 1 level in height
* @return true if tree is balanced, false otherwise
*/
public boolean isTreeBalanced() {
int diff = Math.abs(getHeight(root.left) - getHeight(root.right));
return (diff < 2);
}
/**
* Returns the Lowest Common Ancestor (LCA) of node with xValue and node
* with yValue
* @param node the root node for current subtree being searched
* @param xValue value of the first child node
* @param yValue value of the second child node
* @return the LCA or node with xValue or node with yValue or null
* if nothing found
*/
public Node getLCA(Node node, int xValue, int yValue){
Node leftAns = null;
if (node.left != null) {
leftAns = getLCA(node.left, xValue, yValue);
}
Node rightAns = null;
if (node.right != null) {
rightAns = getLCA(node.right, xValue, yValue);
}
/* MUST BE CHECKED FIRST: else if both leftAns and rightAns are defined,
* current node is LCA */
if (leftAns != null && rightAns != null) {
return node;
}
/* if current node is either x or y*/
if (node.value == xValue || node.value == yValue) {
return node;
}
/* else if left subtree contains only 1 (could be LCA or X or Y) */
if (leftAns != null && rightAns == null) {
return leftAns;
}
/* else if right subtree contains only 1 (could be LCA or X or Y) */
if (rightAns != null && leftAns == null) {
return rightAns;
}
/* if both returns null -> x and y are not found, hence LCA not found in
* current subtree */
else return null;
}
public void getLCA(int xValue, int yValue){
Node LCAxy = getLCA(root, xValue, yValue);
if (LCAxy == null) {
System.out.println("both X and Y are not found in tree");
}
else {
if (LCAxy.value == xValue && xValue != yValue) {
System.out.println("Y is not found in tree");
}
else if (LCAxy.value == yValue && xValue != yValue) {
System.out.println("X is not found in tree");
}
else {
System.out.println("LCA of " + xValue + " and " + yValue +
" is " + LCAxy.value);
}
}
}
/**
* prints binary tree level-wise O(N) time, O(N) space. Q will be at most
* all the leaves
*/
public void printLevelWise(){
LinkedList<Pair<Node,Integer>> Q = new LinkedList<Pair<Node,Integer>>();
/* initial conditions */
int prevLevel = 0;
Q.offer(new Pair<Node,Integer>(root, 0));
while(!Q.isEmpty()){
Pair<Node, Integer> currPair = Q.poll();
Node currNode = currPair.left;
int currLevel = currPair.right;
/* special handling for new levels */
if (currLevel != prevLevel){
System.out.println(""); // print new line
prevLevel = currLevel; // update prevLevel
}
/* handle current node */
System.out.print(currNode.value + " ");
if (currNode.left != null) {
Q.offer(new Pair<Node,Integer>(currNode.left, currLevel + 1));
}
if (currNode.right != null) {
Q.offer(new Pair<Node,Integer>(currNode.right, currLevel + 1));
}
}
}
/**
* prints level-wise, the average of each level
*/
public void printLevelAverage(){
LinkedList<Pair<Node, Integer>> Q =
new LinkedList<Pair<Node, Integer>>();
/* initial conditions */
int prevLevel = 0;
int sum = 0;
int levelSize = 0;
Q.offer(new Pair<Node, Integer>(root, 0));
while(!Q.isEmpty()){
Pair<Node, Integer> currPair = Q.poll();
Node currNode = currPair.left;
int currLevel = currPair.right;
/* special handling if new level is reached */
if (currLevel != prevLevel){
System.out.println((double) sum/levelSize);
/* resets sum and levelSize */
sum = 0;
levelSize = 0;
/* update prevLevel */
prevLevel = currLevel;
}
/* update sum and levelSize */
sum += currNode.value;
levelSize ++;
if (currNode.left != null) {
Q.offer(new Pair<Node,Integer>(currNode.left, currLevel + 1));
}
if (currNode.right != null) {
Q.offer(new Pair<Node,Integer>(currNode.right, currLevel + 1));
}
}
System.out.println((double) sum/levelSize);
}
/**
* Determines the in-order successor of a given node
* @param node node of interest
* @return in-order successor of node, null if non existent
*/
public Node getInorderSuccessor(Node node) {
Node ptr = node;
/* if node had right child, return leftmost node of right subtree */
if (ptr.right != null) {
ptr = ptr.right;
while (ptr.left != null) {
ptr = ptr.left;
}
return ptr;
}
/* else find first parent where node is the left descendant */
else {
while (ptr.parent != null) {
if (ptr.parent.left == ptr) {
return ptr.parent;
}
ptr = ptr.parent;
}
return null; // if no in-order successor
}
}
public static void main(String[] args){
Node node1; Node node2; Node node3; Node node4; Node node5; Node node6;
Node node7; Node node8; Node node9; Node node0;
Node root;
BinaryTree bt;
/* BST:
*
* 5
* / \
* / \
* / \
* 1 8
* / \ / \
* 0 3 6 9
* / \ \
* 2 4 7
*
*/
System.out.println("*************** BST ***************");
System.out.println();
node1 = new Node(1); node2 = new Node(2); node3 = new Node(3);
node4 = new Node(4); node5 = new Node(5); node6 = new Node(6);
node7 = new Node(7); node8 = new Node(8); node9 = new Node(9);
node0 = new Node(0);
root = node5;
bt = new BinaryTree(root);
root.setLeft(node1);
root.left.setLeft(node0);
root.left.setRight(node3);
root.left.right.setLeft(node2);
root.left.right.setRight(node4);
root.setRight(node8);
root.right.setLeft(node6);
root.right.left.setRight(node7);
root.right.setRight(node9);
bt = new BinaryTree(root);
runAlgorithms(bt);
/* not BST:
*
* 1
* / \
* / \
* / \
* 2 3
* / \ / \
* 4 5 6 7
* / \ \
* 8 9 0
*
*/
System.out.println();
System.out.println("************* NOT BST *************");
System.out.println();
node1 = new Node(1); node2 = new Node(2); node3 = new Node(3);
node4 = new Node(4); node5 = new Node(5); node6 = new Node(6);
node7 = new Node(7); node8 = new Node(8); node9 = new Node(9);
node0 = new Node(0);
root = node1;
root.setLeft(node2);
root.left.setLeft(node4);
root.left.setRight(node5);
root.left.right.setLeft(node8);
root.left.right.setRight(node9);
root.setRight(node3);
root.right.setLeft(node6);
root.right.left.setRight(node0);
root.right.setRight(node7);
bt = new BinaryTree(root);
runAlgorithms(bt);
}
public static void runAlgorithms(BinaryTree bt) {
System.out.println("=== Level-Wise ====================");
bt.printLevelWise();
System.out.println();
System.out.println("=== Level-Wise Average ============");
bt.printLevelAverage();
System.out.println("=== Traversals ====================");
System.out.print("Pre-Order: ");
bt.printPreOrder();
System.out.println();
System.out.print("In-Order: ");
bt.printInOrder();
System.out.println();
System.out.print("Post-Order: ");
bt.printPostOrder();
System.out.println();
System.out.println("=== Lowest Common Ancestor +=======");
bt.getLCA(8, 3);
System.out.println("=== Inorder Successors ============");
Node node1 = bt.find(1);
Node node9 = bt.find(9);
Node node7 = bt.find(7);
System.out.println("Successor of 1: " + bt.getInorderSuccessor(node1));
System.out.println("Successor of 9: " + bt.getInorderSuccessor(node9));
System.out.println("Successor of 7: " + bt.getInorderSuccessor(node7));
System.out.println("=== Is Valid BST? =================");
System.out.println(bt.isBST());
System.out.println("=== Tree Height ===================");
System.out.println("Height: " + bt.getHeight(bt.root));
System.out.println("Is tree balanced? " + bt.isTreeBalanced());
}
public static class Node{
Integer value;
Node left;
Node right;
Node parent;
public Node(int value){
this.value = value;
left = null;
right = null;
parent = null;
}
public void setLeft(Node child) {
left = child;
child.parent = this;
}
public void setRight(Node child) {
right = child;
child.parent = this;
}
public String toString() {
return value.toString();
}
}
public static class Pair<X, Y>{
X left;
Y right;
public Pair(X left, Y right){
this.left = left;
this.right = right;
}
}
}