-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBST.java
More file actions
123 lines (121 loc) · 4.48 KB
/
Copy pathBST.java
File metadata and controls
123 lines (121 loc) · 4.48 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
import java.util.Scanner;
public class BST {
public class Node{
private int value;
private Node left;
private Node right;
private int height;
public Node(int value){
this.value=value;
}
public int getValue(){
return value;
}}
private Node root;
public BST() {} //constructor
public int height(Node node){
if(node==null) return 0;
return node.height;
}
public boolean isEmpty(){
return root==null;
}
public void insert(int value){
root=insert(value, root);
}
private Node insert(int value, Node node){
if(node==null){
node = new Node(value);
return node;
}
if(value<node.value){
node.left=insert(value, node.left);
}
if(value>node.value){
node.right=insert(value, node.right);
}
node.height=Math.max(height(node.left),height(node.right))+1;
return node;
}
public void populatedSorted(int[] nums) {
populatedSorted(nums, 0, nums.length);
}
private void populatedSorted(int[] nums, int start, int end) {
if (start >= end) {
return;
}
int mid = (start+end) / 2;
this.insert(nums[mid]);
populatedSorted(nums, start, mid);
populatedSorted(nums, mid+1, end);
}
public boolean balanced() {
return balanced(root);
}
private boolean balanced(Node node){
if(node==null){
return true; }
return Math.abs(height(node.left) - height(node.right)) <= 1 && balanced(node.left) && balanced(node.right);
}
private void display(){
display(this.root, "Root node: ");
}
private void display(Node node, String details){
if(node==null){
return;
}
System.out.println(details + node.value);
display(node.left, "Left child of "+node.value+": ");
display(node.right, "Right child of "+node.value+": ");
}
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
BST tree = new BST();
while (true) {
System.out.println("\nFor Binary Search Tree, choose one from the following: ");
System.out.println("1. Insert elements manually");
System.out.println("2. Insert sorted array (balanced BST)");
System.out.println("3. Exit.");
System.out.print("Enter your choice: ");
int c = sc.nextInt();
switch (c) {
case 1 -> {
System.out.print("Enter number of elements to insert: ");
int n = sc.nextInt();
System.out.println("Enter the values:");
for (int i = 0; i < n; i++) {
int value = sc.nextInt();
tree.insert(value); }
if (tree.isEmpty()) {
System.out.println("Tree is empty.");
} else {
System.out.println("Binary Search Tree Structure: ");
tree.display();
System.out.println("Is the tree balanced? " + tree.balanced());
}}
case 2 -> {
System.out.print("Enter number of sorted elements: ");
int n = sc.nextInt();
int[] arr = new int[n];
System.out.println("Enter the sorted values:");
for (int i = 0; i < n; i++) {
arr[i] = sc.nextInt(); }
tree.populatedSorted(arr);
if (tree.isEmpty()) {
System.out.println("Tree is empty.");
} else {
System.out.println("Binary Search Tree Structure: ");
tree.display();
}
if (tree.isEmpty()) {
System.out.println("Tree is empty.");
} else {
System.out.println("Is the tree balanced? " + tree.balanced());
}}
case 3 -> {
System.out.println("Exiting program...");
sc.close();
return;
}
default -> System.out.println("Invalid choice! Please try again.");
}}}}