-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmirror.java
137 lines (107 loc) · 2.65 KB
/
mirror.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
package binnarytree;
import java.util.Scanner;
public class mirror {
public class BinaryTree {
private class Node {
int data;
Node left;
Node right;
Node(int data, Node left, Node right) {
this.data = data;
this.left = left;
this.right = right;
}
}
private Node root = null;
private int size = 0;
BinaryTree() {
Scanner scn = new Scanner(System.in);
this.root = input(scn, null, false);
}
private Node input(Scanner scn, Node parent, Boolean isleftorright) {
if (parent == null) {
System.out.println("Enter data for the parent node");
} else {
if (isleftorright) {
System.out.println("Enter data for the left child of " + parent.data);
} else {
System.out.println("Enter data for the right child of " + parent.data);
}
}
int data = scn.nextInt();
Node node = new Node(data, null, null);
this.size++;
System.out.println("does " + node.data + " has left child");
Boolean choice = false;
choice = scn.nextBoolean();
if (choice) {
node.left = input(scn, node, true);
}
choice = false;
System.out.println("does " + node.data + " has right child");
choice = scn.nextBoolean();
if (choice) {
node.right = input(scn, node, false);
}
return node;
}
public void display() {
display(this.root);
}
private void display(Node parent) {
String str = "";
if (parent.left != null) {
str += parent.left.data + " => ";
} else {
str += "End => ";
}
str += parent.data;
if (parent.right != null) {
str += " <= " + parent.right.data;
} else {
str += " <= End";
}
System.out.println(str);
if (parent.left != null) {
display(parent.left);
}
if (parent.right != null) {
display(parent.right);
}
}
public int height(Node root) {
if (root == null) {
return -1;
}
int left = height(root.left);
int right = height(root.right);
return Math.max(left, right) + 1;
}
public void mirror(BinaryTree tree) {
this.root = mirror(tree.root);
}
private Node mirror(Node parent) {
if (parent == null) {
return null;
}
Node node = new Node(0, null, null);
node.data = parent.data;
node.left = mirror(parent.right);
node.right = mirror(parent.left);
return node;
}
}
public static void main(String[] args) {
// TODO Auto-generated method stub
// 10 true 20 true 40 false false true 50 false false true 30 true 60 false
// false true 73 false false
mirror m = new mirror();
BinaryTree tree = m.new BinaryTree();
tree.display();
BinaryTree tree2 = tree;
tree2.mirror(tree);
System.out.println();
System.out.println();
tree2.display();
}
}