JavaAlgorithms/DataStructures/Trees/PrintTopViewofTree.java

105 lines
2.3 KiB
Java
Raw Normal View History

2020-10-24 18:23:28 +08:00
package DataStructures.Trees; // Java program to print top view of Binary tree
import java.util.HashSet;
import java.util.LinkedList;
import java.util.Queue;
// Class for a tree node
class TreeNode {
2020-10-24 18:23:28 +08:00
// Members
int key;
TreeNode left, right;
2020-10-24 18:23:28 +08:00
// Constructor
public TreeNode(int key) {
this.key = key;
left = 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
class QItem {
2020-10-24 18:23:28 +08:00
TreeNode node;
int hd;
2020-10-24 18:23:28 +08:00
public QItem(TreeNode n, int h) {
node = n;
hd = h;
}
}
// Class for a Binary Tree
class Tree {
2020-10-24 18:23:28 +08:00
TreeNode root;
2020-10-24 18:23:28 +08:00
// Constructors
public Tree() {
root = null;
}
2020-10-24 18:23:28 +08:00
public Tree(TreeNode n) {
root = n;
}
2020-10-24 18:23:28 +08:00
// This method prints nodes in top view of binary tree
public void printTopView() {
// base case
if (root == null) {
return;
}
2020-10-24 18:23:28 +08:00
// Creates an empty hashset
HashSet<Integer> set = new HashSet<>();
2020-10-24 18:23:28 +08:00
// Create a queue and add root to it
Queue<QItem> Q = new LinkedList<QItem>();
Q.add(new QItem(root, 0)); // Horizontal distance of root is 0
2020-10-24 18:23:28 +08:00
// Standard BFS or level order traversal loop
while (!Q.isEmpty()) {
// Remove the front item and get its details
QItem qi = Q.remove();
int hd = qi.hd;
TreeNode n = qi.node;
2020-10-24 18:23:28 +08:00
// 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 + " ");
}
2020-10-24 18:23:28 +08:00
// Enqueue left and right children of current node
if (n.left != null) Q.add(new QItem(n.left, hd - 1));
if (n.right != null) Q.add(new QItem(n.right, hd + 1));
}
2020-10-24 18:23:28 +08:00
}
}
// Driver class to test above methods
public class PrintTopViewofTree {
2020-10-24 18:23:28 +08:00
public static void main(String[] args) {
/* Create following Binary Tree
1
/ \
2 3
\
4
\
5
\
6*/
TreeNode root = new TreeNode(1);
root.left = new TreeNode(2);
root.right = new TreeNode(3);
root.left.right = new TreeNode(4);
root.left.right.right = new TreeNode(5);
root.left.right.right.right = new TreeNode(6);
Tree t = new Tree(root);
System.out.println("Following are nodes in top view of Binary Tree");
t.printTopView();
}
}