-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBinaryTree.java
More file actions
203 lines (168 loc) · 4.86 KB
/
BinaryTree.java
File metadata and controls
203 lines (168 loc) · 4.86 KB
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
import java.util.Queue;
import java.util.LinkedList;
import java.util.Random;
import nodes.BinaryTreeNode;
public class BinaryTree {
private int size;
private BinaryTreeNode root;
public BinaryTree(BinaryTreeNode node) {
root = node;
size = 1;
}
public void insert(BinaryTreeNode node) {
BinaryTreeNode current = root;
while (true) {
if (node.value > current.value) {
if (current.right == null) {
current.right = node;
size++;
return;
}
else {
current = current.right;
}
}
else if (node.value < current.value) {
if (current.left == null) {
current.left = node;
size++;
return;
}
else {
current = current.left;
}
}
else {
System.out.println("Node is already in the tree.");
return;
}
}
}
public int getMin() {
BinaryTreeNode current = root;
while (true) {
if (current.left != null) {
current = current.left;
}
else {
return current.value;
}
}
}
public int getMax() {
BinaryTreeNode current = root;
while (true) {
if (current.right != null) {
current = current.right;
}
else {
return current.value;
}
}
}
public int size() {
return size;
}
public BinaryTreeNode getRoot() {
return root;
}
public boolean contains(int value) {
BinaryTreeNode current = root;
while (true) {
if (value > current.value) {
if (current.right != null) {
current = current.right;
}
else {
return false;
}
}
else if (value < current.value) {
if (current.left != null) {
current = current.left;
}
else {
return false;
}
}
else {
return true;
}
}
}
public void preOrder(BinaryTreeNode root) {
if (root == null) {
return;
}
System.out.println(root.value);
preOrder(root.left);
preOrder(root.right);
}
public void inOrder(BinaryTreeNode root) {
if (root == null) {
return;
}
inOrder(root.left);
System.out.println(root.value);
inOrder(root.right);
}
public void postOrder(BinaryTreeNode root) {
if (root == null) {
return;
}
postOrder(root.left);
postOrder(root.right);
System.out.println(root.value);
}
public int getHeight(BinaryTreeNode node) {
if (node == null) {
return 0;
}
else {
return 1 + max(getHeight(node.right), getHeight(node.left));
}
}
private int max(int a, int b) {
if (a > b) {
return a;
}
else {
return b;
}
}
public void print() {
Queue<BinaryTreeNode> nodes = new LinkedList<BinaryTreeNode>();
nodes.add(root);
while (!nodes.isEmpty()) {
BinaryTreeNode current = nodes.remove();
System.out.print(current.value + " ");
if (current.left != null) nodes.add(current.left);
if (current.right != null) nodes.add(current.right);
}
}
public static void main(String[] args) {
Random rand = new Random();
BinaryTreeNode test = new BinaryTreeNode(50);
BinaryTree tree = new BinaryTree(test);
// insert 10 random nodes
for (int i = 0; i < 10; i++) {
int randomInt = rand.nextInt(100);
System.out.println("Random num " + i + " " + randomInt);
BinaryTreeNode testing = new BinaryTreeNode(randomInt);
tree.insert(testing);
}
// print tree, along with size, height, max and min
System.out.println("Printed tree: ");
tree.print();
System.out.println("\nSize: " + tree.size() + " Height: " + tree.getHeight(tree.getRoot()) + " Max: " + tree.getMax() + " Min: " + tree.getMin());
// preorder, inorder, and postorder traversals
System.out.println("Preorder");
tree.preOrder(tree.getRoot());
System.out.println("Inorder");
tree.inOrder(tree.getRoot());
System.out.println("Postorder");
tree.postOrder(tree.getRoot());
System.out.println("Contains 50? " + tree.contains(50));
System.out.println("Contains 24? " + tree.contains(24));
}
}