-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathheight.java
79 lines (74 loc) · 1.54 KB
/
height.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
import java.util.*;
class bst{
class node{
int data;
node left,right;
node(int data)
{
this.data=data;
left=right=null;
}
}
node root;
bst(){
root=null;
}
void insert(int data){
root=insertv(root,data);
}
node insertv(node root,int data)
{
if(root==null)
return new node(data);
else if(data<root.data)
root.left=insertv(root.left,data);
else if(data>root.data)
root.right=insertv(root.right,data);
return root;
}
void preordr()
{
// System.out.println("pre order===");
preorder(root);
}
void preorder(node t)
{
if(t!=null)
{
preorder(t.left);
System.out.print(t.data+" ");
preorder(t.right);
}
}
void height(){
System.out.println("height of tree "+heightf(root));
}
int heightf(node root)
{
if(root==null)
return 0;
else
{
int lh=heightf(root.left);
int rh=heightf(root.right);
if(lh>rh)
return lh+1;
else
return rh+1;
}
}
public static Scanner sc=new Scanner(System.in);
public static void main(String[] e){
bst bt=new bst();
while(true){
int x=sc.nextInt();
if(x==-1)
break;
bt.insert(x);
}
System.out.print("IN_ORDER : ");
System.out.println();
bt.preordr();
bt.height();
}
}