-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTreeOperations.java
More file actions
333 lines (215 loc) · 5.57 KB
/
TreeOperations.java
File metadata and controls
333 lines (215 loc) · 5.57 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
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
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
import java.util.HashMap;
import java.util.LinkedList;
import java.util.Map;
import java.util.Map.Entry;
import java.util.Queue;
import java.util.TreeMap;
public class TreeOperations {
class Node{
public int data;
public Node left;
public Node right;
public Node(int data) {
this.data = data;
}
}
class QNode{
Node node;
int hd;
QNode(Node node , int hd ){
this.node = node;
this.hd = hd;
}
}
//topView of tree
void topView(Node root) {
Queue<QNode> q = new LinkedList<>();
Map<Integer,Node> map = new TreeMap<>();
q.add(new QNode(root,0));
while(!q.isEmpty()) {
QNode temp = q.poll();
if(!map.containsKey(temp.hd)) {
map.put(temp.hd, temp.node);
}
if(temp.node.left != null) q.add(new QNode(temp.node.left,temp.hd-1));
if(temp.node.right != null) q.add(new QNode(temp.node.right,temp.hd+1));
}
for(Entry<Integer,Node> entry : map.entrySet()) {
System.out.print(entry.getValue().data+" ");
}
}
//left View
void leftView(Node root) {
Queue<QNode> q = new LinkedList<>();
Map<Integer,Node> map = new TreeMap<>();
q.add(new QNode(root,0));
while(!q.isEmpty()) {
QNode temp = q.poll();
if(!map.containsKey(temp.hd)) {
map.put(temp.hd, temp.node);
}
if(temp.node.left != null) q.add(new QNode(temp.node.left,temp.hd+1));
if(temp.node.right != null) q.add(new QNode(temp.node.right,temp.hd+1));
}
for(Entry<Integer,Node> entry : map.entrySet()) {
System.out.print(entry.getValue().data+" ");
}
}
//right View
void rightView(Node root) {
Queue<QNode> q = new LinkedList<>();
Map<Integer,Node> map = new TreeMap<>();
q.add(new QNode(root,0));
while(!q.isEmpty()) {
QNode temp = q.poll();
if(!map.containsKey(temp.hd)) {
map.put(temp.hd, temp.node);
}
if(temp.node.right != null) q.add(new QNode(temp.node.right,temp.hd+1));
if(temp.node.left != null) q.add(new QNode(temp.node.left,temp.hd+1));
}
for(Entry<Integer,Node> entry : map.entrySet()) {
System.out.print(entry.getValue().data+" ");
}
}
//bottom view
void bottomView(Node root) {
Queue<QNode> q = new LinkedList<>();
Map<Integer,Node> map = new TreeMap<>();
q.add(new QNode(root,0));
while(!q.isEmpty()) {
QNode temp = q.poll();
map.put(temp.hd, temp.node);
if(temp.node.left != null) q.add(new QNode(temp.node.left,temp.hd -1));
if(temp.node.right != null) q.add(new QNode(temp.node.right,temp.hd +1));
}
for(Entry<Integer,Node> entry : map.entrySet()) {
System.out.print(entry.getValue().data +" ");
}
}
// tree to double linked list
Node head = null;
Node pre = null;
void treeToDll(Node root) {
if(root == null) return;
treeToDll(root.left);
if(pre == null) {
head = root;
}else {
root.left = pre;
pre.right = root;
}
pre = root;
treeToDll(root.right);
}
//check sum property
boolean checkChildrenSum(Node root) {
int left = 0 , right = 0;
if(root == null || (root.left == null && root.right == null )) {
return false;
}
if(root.left != null) left = root.left.data;
if(root.right != null) right = root.right.data;
if(root.data == left+right && checkChildrenSum(root.left) && checkChildrenSum(root.right)) {
return true;
}else {
return false;
}
}
//iterative BFT
void breadthFirstTraversal(Node head) {
Queue<Node> q = new LinkedList<Node>();
q.add(head);
while(!q.isEmpty()) {
Node node = q.remove();
print(node.data);
if(node.left != null) {
q.add(node.left);
}
if(node.right != null) {
q.add(node.right);
}
}
}
//recursive BFT
void breadthFirstTraversalR(Node head) {
}
//Height of the Tree
void heightOfTree(Node head) {
int height= 0;
Queue<Node> q = new LinkedList<Node>();
q.add(head);
while(!q.isEmpty()) {
height++;
int size = q.size();
while(size > 0) {
Node node = q.remove();
if(node.left != null) {
q.add(node.left);
}
if(node.right != null) {
q.add(node.right);
}
--size;
}
}
print(height);
}
//height of the tree recursive
int heightOfTreeR(Node head) {
if(head == null) {
return 0;
}else {
int l = heightOfTreeR(head.left);
int r = heightOfTreeR(head.right);
return Math.max(l, r)+1;
}
}
public void print(int n) {
System.out.print(n+" ");
}
public void print(String n) {
System.out.println(n+" ");
}
Node createTree() {
Node head = new Node(8);
head.left = new Node(3);
head.right = new Node(10);
//left SubTree
head.left.left = new Node(1);
head.left.right = new Node(6);
head.left.right.left = new Node(4);
head.left.right.right = new Node(7);
//right subtree
head.right.right = new Node(14);
head.right.right.left = new Node(13);
return head;
}
public static void main(String args[]) {
TreeOperations obj = new TreeOperations();
Node root = obj.createTree();
// Breadth first Traversal
obj.breadthFirstTraversal(root);
obj.print("\n");
// height of the Tree
int height = obj.heightOfTreeR(root);
obj.print(height);
obj.print("\n");
//tree Views
obj.topView(root);
obj.print("\n");
obj.leftView(root );
obj.print("\n");
obj.rightView(root);
obj.print("\n");
obj.bottomView(root);
obj.print("\n");
// tree to dll
obj.treeToDll(root);
Node p = obj.head;
while(p != null) {
System.out.print(p.data+" ");
p = p.right;
}
}
}