-
Notifications
You must be signed in to change notification settings - Fork 0
/
AjayB.java
68 lines (62 loc) · 902 Bytes
/
AjayB.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
class node
{
int value ;
node left = null ;
node right = null ;
node(int v)
{
value = v ;
}
}
class AjayB
{
Map<Integer,Integer> m1 = new HashMap<Integer,node>() ;
Map<Integer,Integer> m2 = new HashMap<node,Integer>() ;
int[] A ;
AjaB(int n)
{
A = new int[n] ;
}
void addNode(node root,int a)
{
int c = 0 ;
node N = new node(a) ;
node temp = root ;
node par ;
while(temp!=null)
{
par = temp ;
if(a<=temp.value)
{
temp = temp.left ;
}
else
{
temp = temp.right ;
}
}
if(par.value <a)
{
par.right = N ;
}
else
{
par.left = N ;
}
}
void inOrderTraversal(node root)
{
if(root!=null)
{
inOrderTraversal(root.left) ;
A[c] = root.value ;
m1.put(root.value,c) ;
m2.put(c,root.value) ;
inOrderTraversal(root.right) ;
}
}
int nLargestBST(node root, int relp)
{
inOrderTraversal(root) ;
}
}