-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIsomorphicNodes.java
425 lines (365 loc) · 14.8 KB
/
IsomorphicNodes.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
package com.deep;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Stack;
/**
* Created by deep on 4/27/17.
* implements an algorithm to check if two nodes are isomorphic
*/
/**
* class for the node
*/
class Node {
final int data;
Node left, right;
Node(int item) {
this.data = item;
this.left = this.right = null;
}
}
/**
* implementation of the algorithm in recursive and iterative methods
*/
class Isomorphic {
/**
* recursively checks if the 2 nodes are isomorphic
*
* @param first the first node/tree to compare
* @param second the second node/tree to compare
*/
static boolean recursive(Node first, Node second) {
// Both roots are NULL, trees isomorphic by definition
if (first == null && second == null) return true;
// Exactly one of the first and second is NULL, trees not isomorphic
if (first == null || second == null) return false;
// if the two are not equal, trees are not isomorphic
if (first.data != second.data) return false;
// There are two possible cases for first and second to be isomorphic
// Case 1: The subtrees rooted at these nodes have NOT been "Flipped".
// Both of these subtrees have to be isomorphic.
// Case 2: The subtrees rooted at these nodes have been "Flipped"
return (recursive(first.left, second.left) && recursive(first.right, second.right)) ||
(recursive(first.left, second.right) && recursive(first.right, second.left));
}
/**
* iteratively checks if the two nodes are isomorphic
*/
static boolean iterative(Node tree1, Node tree2) {
Stack<Node> stack1 = new Stack<>(); //nodes from tree1
Stack<Node> stack2 = new Stack<>(); //nodes from tree2
stack1.push(tree1);
stack2.push(tree2);
Node first, second;
while (!stack1.isEmpty() && !stack2.isEmpty()) {
first = stack1.pop();
second = stack2.pop();
//might be isomorphic continue...
if ((first == null) && (second == null)) continue;
//not isomorphic if comparing null nodes
if ((first == null) || (second == null)) return false;
//if they're not equal they're not isomorphic
if (!(first.data == second.data)) return false;
// There are two possible cases for first and second to be isomorphic
// Case 1: The subtrees rooted at these nodes are "Symmetric".
if (nodesEqual(first.left, second.left) &&
nodesEqual(first.right, second.right)) {
//add the child nodes to the stacks in symmetric order so they'll be pulled symmetrically
stack1.push(first.left);
stack2.push(second.left);
stack1.push(first.right);
stack2.push(second.right);
continue;
}
// Both of these subtrees have to be isomorphic.
// Case 2: The subtrees rooted at these nodes have been "Flipped"
if (nodesEqual(first.left, second.right) &&
nodesEqual(first.right, second.left)) {
//add the child nodes to the stacked in flipped order so they'll be pulled flipped and the nodes match up
stack1.push(first.left);
stack2.push(second.right);
stack1.push(first.right);
stack2.push(second.left);
continue;
}
return false;
}
return true;
}
private static boolean nodesEqual(Node first, Node second) {
// if Both trees are NULL, trees isomorphic by definition
if ((first == null) && (second == null)) {
return true;
} else {
// Exactly one of the first and second is NULL, trees not equal nor are they isomorphic
if ((first == null) || (second == null)) {
return false;
} else {
//if the two are equal trees might be isomorphic
return first.data == second.data;
}
}
}
}
/**
* Driver class
*/
class IsomorphicNodes {
public static void main(String args[]) {
// generate sample trees
Node tree1 = initFirstTree();
Node tree2 = initSecondTree();
Node tree3 = initThirdTree();
Node tree4 = initFourthTree();
printTree("1) Printing tree1", tree1);
printTree("2) Printing tree2", tree2);
printTree("3) Printing tree3", tree3);
printTree("4) Printing tree4", tree4);
System.out.println("\n");
System.out.println("========================== Isomorphic Test ==========================\n");
runAlgorithmForNodes("1) Comparing tree1 & tree2...\n\t", tree1, tree2);
runAlgorithmForNodes("2) Comparing tree1 & tree3...\n\t", tree1, tree3);
runAlgorithmForNodes("3) Comparing tree2 & tree3...\n\t", tree2, tree3);
runAlgorithmForNodes("4) Comparing tree4 & tree1...\n\t", tree4, tree1);
runAlgorithmForNodes("5) Comparing tree4 & tree2...\n\t", tree4, tree2);
}
/**
* helper method to print the trees and the time taken to print the trees
*/
private static void printTree(String title, Node tree) {
System.out.println(title);
long start = System.nanoTime();
Printer.printTree(tree);
long end = System.nanoTime();
System.out.printf("Took %s ns to print", end - start);
System.out.println("\n");
}
/**
* runs the algorithm and prints out the time taken to run the algorithm both recursively iteratively
*/
private static void runAlgorithmForNodes(String titleOfTest, Node tree1, Node tree2) {
//display the title
System.out.printf(titleOfTest);
//run the first algorithm
long start1 = System.nanoTime();
boolean isIsomorphic1 = Isomorphic.recursive(tree1, tree2);
long end1 = System.nanoTime();
long recursiveTime = end1 - start1;
System.out.printf("Recursive result %s isomorphic\n\t", isIsomorphic1 ? "IS" : "IS NOT");
//run the iterative implementation
long start2 = System.nanoTime();
boolean isIsomorphic2 = Isomorphic.iterative(tree1, tree2);
long end2 = System.nanoTime();
long iterativeTime = end2 - start2;
System.out.printf("Iterative result %s isomorphic\n", isIsomorphic2 ? "IS" : "IS NOT");
System.out.println("\t+----------------+----------------+");
System.out.printf("\t| %s | %s |\n", recursiveTime < iterativeTime ? "winner" : " ", iterativeTime < recursiveTime ? "winner" : " ");
System.out.println("\t+----------------+----------------+");
System.out.println("\t| recursive time | iterative time |");
System.out.println("\t|----------------|----------------|");
int size = 16;
int spaces1 = size - (getNumberOfInts(recursiveTime) + 3);
int left1 = (int) Math.ceil(((double) spaces1) / (2d));
int right1 = (int) Math.floor(((double) spaces1) / (2d));
int spaces2 = size - (getNumberOfInts(iterativeTime) + 3);
int left2 = (int) Math.ceil(((double) spaces2) / (2d));
int right2 = (int) Math.floor(((double) spaces2) / (2d));
System.out.printf("\t|%s%s ns%s|%s%s ns%s|\n",
makeSpaces(left1), recursiveTime, makeSpaces(right1),
makeSpaces(left2), iterativeTime, makeSpaces(right2));
System.out.println("\t+----------------+----------------+\n");
}
private static int getNumberOfInts(long number) {
return Long.toString(number).length();
}
private static String makeSpaces(int count) {
String string = "";
for (int i = 0; i < count; i++) {
string += " ";
}
return string;
}
//creates the first tree
static Node initFirstTree() {
Node node = new Node(1);
node.left = new Node(2);
node.right = new Node(3);
node.left.left = new Node(4);
node.left.right = new Node(5);
node.right.left = new Node(6);
node.left.right.left = new Node(7);
node.left.right.right = new Node(8);
return node;
}
//creates the second tree
static Node initSecondTree() {
Node node = new Node(1);
node.left = new Node(3);
node.right = new Node(2);
node.right.left = new Node(4);
node.right.right = new Node(5);
node.left.right = new Node(6);
node.right.right.left = new Node(8);
node.right.right.right = new Node(7);
return node;
}
//creates the third tree
static Node initThirdTree() {
Node node = new Node(1);
node.left = new Node(2);
node.right = new Node(3);
node.right.left = new Node(6);
node.right.right = new Node(5);
node.left.right = new Node(4);
node.right.right.left = new Node(8);
node.right.right.right = new Node(7);
return node;
}
static Node initFourthTree() {
Node node = new Node(1);
node.left = new Node(2);
node.right = new Node(3);
node.left.left = new Node(4);
node.left.right = new Node(5);
node.right.left = new Node(6);
node.left.right.left = new Node(8);
node.left.right.right = new Node(7);
return node;
}
}
/**
* Class that prints the Binary Trees recursively
*/
class Printer {
/**
* prints the node as a tree
* <p>
* ex) Something like the below diagram but without the dashes
* <p>
* ----------1--------
* ---------/-\-------
* --------/---\------
* -------/-----\-----
* ------/-------\----
* ------2-------3----
* -----/-\-----/-----
* ----/---\---/------
* ----4---5---6------
* -------/-\---------
* -------7-8---------
*
* @param tree the tree to print out
*/
public static void printTree(Node tree) {
int maxLevel = getNumOfLevels(tree);
printNodeInternal(Collections.singletonList(tree), 1, maxLevel);
}
/**
* prints the nodes as a tree
*
* @param nodes the list of nodes to print
* @param currentLevel the level that you want to print
* @param numOfLevels the maximum level that you're on
*/
private static void printNodeInternal(List<Node> nodes, int currentLevel, int numOfLevels) {
//don't do anything if there are not nodes or if all the list items are null
if (nodes.isEmpty() || areAllElementsNull(nodes)) return;
int distanceFromFloor = numOfLevels - currentLevel; //the distance from the floor of the tree
int edgeLineNum = (int) Math.pow(2, Math.max(distanceFromFloor - 1, 0)); //number of lines to put separating each node
int startSpaces = (int) Math.pow(2, distanceFromFloor) - 1; //number of spaces to add before the data node
int spacesBetween = (int) Math.pow(2, distanceFromFloor + 1) - 1; //number of spaces between each node
//prints spaces before printing the data value for a node at the given point
int offsetToRight = 3;
printWhitespaces(startSpaces + offsetToRight);
//holds the list of nodes that are supposed to be expanded for the next level
List<Node> newNodes = new ArrayList<>();
//prints out the data from the list of nodes
for (int i = 0; i < nodes.size(); i++) {
Node node = nodes.get(i);
if (node != null) {
System.out.printf("%s", node.data);
newNodes.add(node.left);
newNodes.add(node.right);
} else {
System.out.print(" ");
newNodes.add(null);
newNodes.add(null);
}
//if the node is the last node then just print the number of spaces to fill in the image, not overflow
boolean isLastNode = i != (nodes.size() - 1);
if (isLastNode) {
printWhitespaces(spacesBetween);
} else {
printWhitespaces(startSpaces + 1);
}
}
//prints debug info
//System.out.printf("\t\t(currentLevel:%s, numOfLevels:%s, distanceFromFloor:%s, edgeLineNum:%s, startSpaces:%s, spacesBetween:%s)", currentLevel, numOfLevels, distanceFromFloor, edgeLineNum, startSpaces, spacesBetween);
System.out.println();
//if there are no more non null nodes in the list of nodes to check then you're done
if (areAllElementsNull(newNodes)) {
//System.out.print("END");
//System.out.println();
return;
}
// Loops through and prints the edge lines
// if they need to be printed otherwise just print the spaces
for (int i = 1; i <= edgeLineNum; i++) {
printWhitespaces(offsetToRight);
for (Node node : nodes) {
printWhitespaces(startSpaces - i);
//System.out.printf("(%s)", startSpaces - i);
if (node == null) {
printWhitespaces(edgeLineNum * 2 + i + 1);
//System.out.printf("(%s)", edgeLineNum * 2 + i + 1);
continue;
}
//print the left node edge line
//or a white space because the node's data will probably be there
if (node.left != null) {
System.out.print("/");
} else {
printWhitespaces(1);
}
//print the spaces between edge lines
printWhitespaces(i * 2 - 1);
//print the right node edge line
//or a white space because the node doesn't have a child there
if (node.right != null) {
System.out.print("\\");
} else {
printWhitespaces(1);
}
//print the spaces after edge lines
printWhitespaces(edgeLineNum * 2 - i);
}
System.out.println();
}
printNodeInternal(newNodes, currentLevel + 1, numOfLevels);
}
private static void printWhitespaces(int count) {
for (int i = 0; i < count; i++)
System.out.print(" ");
}
/**
* gets the number of levels for the tree
*
* @param node gets the max level of the node
* @return the max level of the node
*/
private static int getNumOfLevels(Node node) {
if (node == null) return 0;
return Math.max(getNumOfLevels(node.left), getNumOfLevels(node.right)) + 1;
}
/**
* checks to see if the list items are null
*
* @param list list to check
*/
private static boolean areAllElementsNull(List<Node> list) {
for (Node node : list) {
if (node != null) return false;
}
return true;
}
}