forked from blakeembrey/code-problems
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBinarySearchTree.java
More file actions
72 lines (61 loc) · 1.28 KB
/
BinarySearchTree.java
File metadata and controls
72 lines (61 loc) · 1.28 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
/*
* Program to create a binary search tree.
* Author: Viveka Aggarwal
*/
public class BinarySearchTree {
Node root;
public class Node {
Node left;
Node right;
Integer data;
Node() {
}
Node(Integer data) {
left = right = null;
this.data = data;
}
}
BinarySearchTree() {
root = new Node();
}
BinarySearchTree(Integer data) {
root = new Node(data);
}
public void addToTree(Integer data) {
addToTree(root, data);
}
private void addToTree(Node curr, Integer data) {
if(curr == null) {
curr = new Node(data);
} else if(curr.data.compareTo(data) >= 0) {
if(curr.left == null)
curr.left = new Node(data);
else
addToTree(curr.left, data);
} else {
if(curr.right == null)
curr.right = new Node(data);
else
addToTree(curr.right, data);
}
}
@Override
public String toString() {
return toString(this.root);
}
String toString(Node curr) {
if(curr == null)
return "";
return toString(curr.left) + " " + curr.data + " " + toString(curr.right);
}
public static void main(String[] args) {
BinarySearchTree tree = new BinarySearchTree(1);
tree.addToTree(5);
tree.addToTree(3);
tree.addToTree(89);
tree.addToTree(43);
tree.addToTree(43);
tree.addToTree(67);
System.out.println(tree.toString());
}
}