-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBinarySearchTree.java
302 lines (252 loc) · 5.88 KB
/
BinarySearchTree.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
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
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
import java.util.Scanner;
public class BinarySearchTree {
Scanner sc=new Scanner (System.in);
// Node Class for Creating Node Object //
class Node{
int data;
Node left,right;
// Constructor for class Node to Intialize the data //
Node(int val)
{
data=val;
}
}
Node root; // reference variable to maintain the root Node //
// Constructor for class BinarySearchTree //
BinarySearchTree()
{
root= null;
}
// Method to create a Node and insert the value //
// By Recursive //
Node insertByRecursive(Node root,int val)
{
if(root==null)
return root=new Node(val);
if(val<root.data)
{
root.left=insertByRecursive(root.left,val);
}
else
{
root.right=insertByRecursive(root.right,val);
}
return root;
}
// Insertion By Iterative //
void insertByIterative(int val)
{
if(root==null)
{
root=new Node(val);
return;
}
Node prev=null;
Node temp=root;
while(temp!=null)
{
prev=temp;
if(temp.data<val)
{
temp=temp.right;
}
else
{
temp=temp.left;
}
}
if(prev.data<val)
prev.right=new Node(val);
else
prev.left=new Node(val);
}
// insert Head method //
void insert()
{
System.out.println("Press 1 to insert By recursive \nPress 2 to insert by iterative ");
int choice=sc.nextInt();
if(choice==1)
{
System.out.println("Enter the Value ");
int val=sc.nextInt();
Node temp=search(root,val);
if(temp==null) {
root=insertByRecursive(root,val);
System.out.println("Value inserted By recursively");
}else {System.out.println("This element is Already present in tree duplicates are not allowed!!!!");}
}
else if(choice==2) {
System.out.println("Enter the Value ");
int vall=sc.nextInt();
Node temp=search(root,vall);
if(temp==null) {
insertByIterative(vall);
System.out.println("Value inserted By Iteratively");
}else {System.out.println("This element is Already present in tree duplicates are not allowed!!!!");}
}
else {
System.err.println("Sorry!!! You entered the Wrong Choices");
}
}
// InOrder Traversal //
void inorderTraversal(Node root)
{
if(root!=null)
{
inorderTraversal(root.left);
System.out.print(" "+root.data);
inorderTraversal(root.right);
}
}
// PreOrder Traversal Traversal //
void preorderTraversal(Node root)
{
if(root!=null)
{
System.out.print(" "+root.data);
inorderTraversal(root.left);
inorderTraversal(root.right);
}
}
// PostOrder traversal //
void postorderTraversal(Node root)
{
if(root!=null)
{
inorderTraversal(root.left);
inorderTraversal(root.right);
System.out.print(" "+root.data);
}
}
// Root Check //
boolean rootIsNull(Node root)
{
if(root!=null)
return false;
return true;
}
// Head traversal Method //
void traversal()
{
if(rootIsNull(root))
{
System.err.println("Tree Has No Values, Plz Insert some Values");
return;
}
System.out.println("Enter 1 to PreOrder Traversal\nEnter 2 to InOrder Traversal\nEnter 3 to PostOrder Traversal");
int choice=sc.nextInt();
if(choice==1)
{
System.out.println("Pre Order Traversal");
preorderTraversal(root);
System.out.println();
}
else if(choice ==2)
{
System.out.println("In Order Traversal");
inorderTraversal(root);
System.out.println();
}
else if(choice==3)
{
System.out.println("Post Order Traversal");
postorderTraversal(root);
System.out.println();
}
else
{
System.err.println("Sorry!!! You entered the Wrong Choices");
}
}
Node delete(Node root,int val)
{
if(root==null)
return null;
if(root.data<val)
root.right=delete(root.right,val);
else if(root.data>val)
root.left=delete(root.left,val);
else {
if(root.left==null)
return root.right;
else if(root.right==null)
return root.left;
root.data=min(root.right);
root.right=delete(root.right,root.data);
}
return root;
}
// Find Minimum Value //
int min(Node root)
{
int min=root.data;
while(root.left!=null)
{
min=root.left.data;
root=root.left;
}
return min;
}
// search method to search the given value is present or not //
Node search(Node root,int val)
{
if(root==null)
return null;
if(val<root.data)
return search(root.left,val);
else if(val>root.data)
return search(root.right,val);
else
return root;
}
void searchAndDelete()
{
System.out.println("Enter the value :");
int val=sc.nextInt();
Node temp=search(root,val);
if(temp==null) {
System.err.println("No such element in the Tree");
return;
}
else {
root=delete(root,val);
System.out.println(val +" Successfully deleted ");
}
}
void info()
{
while(true)
{
System.out.println(" -------------------WELCOME--------------------------\n |");
System.out.println(" |Press 1 to Insert the Value ");
System.out.println(" |Press 2 to Delete the Value ");
System.out.println(" |Press 3 to Traverse");
System.out.println(" |Press 4 to Exit");
System.out.println(" |----------------------------------------------------");
System.out.println("\nEnter Your Choice");
Scanner sc=new Scanner(System.in);
int choice =sc.nextInt();
switch(choice)
{
case 1:
insert();
break;
case 2:
searchAndDelete();
break;
case 3:
traversal();
break;
case 4:
System.out.println("Bye Bye!!!");
System.exit(0);
default:
System.err.println("Plz Enter the Valid Choice");
}
}
}
public static void main(String[] args) {
BinarySearchTree bst=new BinarySearchTree();
bst.info();
}
}