Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 21.3k
Expand file tree
/
Copy pathPrintTopViewofTree.java
More file actions
Latest commit
117 lines (97 loc) · 2.71 KB
/
Copy pathPrintTopViewofTree.java
File metadata and controls
117 lines (97 loc) · 2.71 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
packagecom.thealgorithms.datastructures.trees; // Java program to print top view of Binary tree
importjava.util.HashSet;
importjava.util.LinkedList;
importjava.util.Queue;
// Class for a tree node
classTreeNode {
// Members
intkey;
TreeNodeleft;
TreeNoderight;
// Constructor
TreeNode(intkey) {
this.key = key;
left = null;
right = null;
}
}
// A class to represent a queue item. The queue is used to do Level
// order traversal. Every Queue item contains node and horizontal
// distance of node from root
classQItem {
TreeNodenode;
inthd;
QItem(TreeNoden, inth) {
node = n;
hd = h;
}
}
// Class for a Binary Tree
classTree {
TreeNoderoot;
// Constructors
Tree() {
root = null;
}
Tree(TreeNoden) {
root = n;
}
// This method prints nodes in top view of binary tree
publicvoidprintTopView() {
// base case
if (root == null) {
return;
}
// Creates an empty hashset
HashSet<Integer> set = newHashSet<>();
// Create a queue and add root to it
Queue<QItem> queue = newLinkedList<QItem>();
queue.add(newQItem(root, 0)); // Horizontal distance of root is 0
// Standard BFS or level order traversal loop
while (!queue.isEmpty()) {
// Remove the front item and get its details
QItemqi = queue.remove();
inthd = qi.hd;
TreeNoden = qi.node;
// If this is the first node at its horizontal distance,
// then this node is in top view
if (!set.contains(hd)) {
set.add(hd);
System.out.print(n.key + " ");
}
// Enqueue left and right children of current node
if (n.left != null) {
queue.add(newQItem(n.left, hd - 1));
}
if (n.right != null) {
queue.add(newQItem(n.right, hd + 1));
}
}
}
}
// Driver class to test above methods
publicfinalclassPrintTopViewofTree {
privatePrintTopViewofTree() {
}
publicstaticvoidmain(String[] args) {
/* Create following Binary Tree
1
/ \
2 3
\
4
\
5
\
6*/
TreeNoderoot = newTreeNode(1);
root.left = newTreeNode(2);
root.right = newTreeNode(3);
root.left.right = newTreeNode(4);
root.left.right.right = newTreeNode(5);
root.left.right.right.right = newTreeNode(6);
Treet = newTree(root);
System.out.println("Following are nodes in top view of Binary Tree");
t.printTopView();
}
}