-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathSolution.java
114 lines (90 loc) · 2.86 KB
/
Solution.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
import java.util.Stack;
public class Solution {
public static class BinaryTree {
public static class Node {
private Node left;
private Node right;
private String val;
public Node(String val) {
this.val = val;
}
public void setRight(String val) {
setRight(new Node(val));
}
public void setLeft(String val) {
setLeft(new Node(val));
}
public void setLeft(Node node) {
left = node;
}
public void setRight(Node node) {
right = node;
}
public Node getLeft() {
return left;
}
public Node getRight() {
return right;
}
public String getVal() {
return val;
}
}
private Node root;
public void setRoot(String val) {
this.root = new Node(val);
}
public Node getRoot() {
return root;
}
private String printNode(Node node, int level) {
if (node == null)
return "";
StringBuilder sb = new StringBuilder();
String format = "%" + (level * 4 + 4) + "s%n";
String s = String.format(format, node.getVal());
sb.append(s);
sb.append(printNode(node.getLeft(), level + 1));
sb.append(printNode(node.getRight(), level + 1));
return sb.toString();
}
@Override
public String toString() {
if (root == null)
return "[Empty tree]";
return printNode(root, 0);
}
}
private static void swapChildren(BinaryTree.Node node) {
BinaryTree.Node left = node.left;
BinaryTree.Node right = node.right;
node.setLeft(right);
node.setRight(left);
}
private static void mirrorBinaryTree(BinaryTree binaryTree) {
Stack<BinaryTree.Node> stack = new Stack<>();
stack.push(binaryTree.getRoot());
while (!stack.isEmpty()) {
BinaryTree.Node current = stack.pop();
if (current == null)
continue;
swapChildren(current);
stack.add(current.getLeft());
stack.add(current.getRight());
}
}
public static void main(String[] args) {
BinaryTree tree = new BinaryTree();
tree.setRoot("a");
BinaryTree.Node root = tree.getRoot();
root.setLeft("b");
root.setRight("c");
root.getLeft().setLeft("d");
root.getLeft().setRight("e");
root.getRight().setLeft("f");
System.out.println(tree);
mirrorBinaryTree(tree);
System.out.println("Mirrored tree");
System.out.println(tree);
}
}