-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path*(Binary Tree) Size, Sum, Max and Height of Binary Tree
153 lines (124 loc) · 3.21 KB
/
*(Binary Tree) Size, Sum, Max and Height of Binary Tree
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
import java.io.*;
import java.util.*;
public class Main {
public static class Node {
int data;
Node left;
Node right;
Node(int data, Node left, Node right) {
this.data = data;
this.left = left;
this.right = right;
}
}
public static class Pair {
Node node;
int state;
Pair(Node node, int state) {
this.node = node;
this.state = state;
}
}
public static Node construct(Integer[] arr) {
Node root = new Node(arr[0], null, null);
Pair rtp = new Pair(root, 1);
Stack<Pair> st = new Stack<>();
st.push(rtp);
int idx = 0;
while (st.size() > 0) {
Pair top = st.peek();
if (top.state == 1) {
idx++;
if (arr[idx] != null) {
top.node.left = new Node(arr[idx], null, null);
Pair lp = new Pair(top.node.left, 1);
st.push(lp);
} else {
top.node.left = null;
}
top.state++;
} else if (top.state == 2) {
idx++;
if (arr[idx] != null) {
top.node.right = new Node(arr[idx], null, null);
Pair rp = new Pair(top.node.right, 1);
st.push(rp);
} else {
top.node.right = null;
}
top.state++;
} else {
st.pop();
}
}
return root;
}
public static void display(Node node) {
if (node == null) {
return;
}
String str = "";
str += node.left == null ? "." : node.left.data + "";
str += " <- " + node.data + " -> ";
str += node.right == null ? "." : node.right.data + "";
System.out.println(str);
display(node.left);
display(node.right);
}
public static int size(Node node) {
// write your code here
if(node == null)
return 0 ;
int lsz =size(node.left);
int rsz =size(node.right);
return lsz+rsz+1;
}
public static int sum(Node node) {
// write your code here
if(node == null)
return 0;
int lsum = sum(node.left);
int rsum = sum(node.right);
return lsum+rsum+node.data;
}
public static int max(Node node) {
// write your code here
if(node == null){
return Integer.MIN_VALUE;
}
int lmax = max(node.left);
int rmax = max(node.right);
return Math.max(node.data,Math.max(lmax,rmax));
}
public static int height(Node node) {
// write your code here
if(node == null){
return -1;
}
int lh = height(node.left);
int rh = height(node.right);
return Math.max(lh,rh)+1;
}
public static void main(String[] args) throws Exception {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int n = Integer.parseInt(br.readLine());
Integer[] arr = new Integer[n];
String[] values = br.readLine().split(" ");
for (int i = 0; i < n; i++) {
if (values[i].equals("n") == false) {
arr[i] = Integer.parseInt(values[i]);
} else {
arr[i] = null;
}
}
Node root = construct(arr);
int size = size(root);
int sum = sum(root);
int max = max(root);
int ht = height(root);
System.out.println(size);
System.out.println(sum);
System.out.println(max);
System.out.println(ht);
}
}