Problem of the day
You are given a Binary Tree of 'n' nodes.
The Top view of the binary tree is the set of nodes visible when we see the tree from the top.
Find the top view of the given binary tree, from left to right.
Input: Let the binary tree be:
Output: [10, 4, 2, 1, 3, 6]
Explanation: Consider the vertical lines in the figure. The top view contains the topmost node from each vertical line.
The first line of input contains elements in the level order form for the first binary tree. The line consists of values of nodes separated by a single space. In case a node is null, we take -1 in its place.
Input format explanation:
The level order input for the tree depicted in the below image would be
1
2 3
4 -1 5 6
-1 7 -1 -1 -1 -1
-1 -1
The sequence will be put together in a single line separated by a single space. Hence, for the above-depicted tree, the input will be given as:
1 2 3 4 -1 5 6 -1 7 -1 -1 -1 -1 -1 -1
Explanation :
Level 1 :
The root node of the tree is 1
Level 2 :
Left child of 1 = 2
Right child of 1 = 3
Level 3 :
Left child of 2 = 4
Right child of 2 = null (-1)
Left child of 3 = 5
Right child of 3 = 6
Level 4 :
Left child of 4 = null (-1)
Right child of 4 = 7
Left child of 5 = null (-1)
Right child of 5 = null (-1)
Left child of 6 = null (-1)
Right child of 6 = null (-1)
Level 5 :
Left child of 7 = null (-1)
Right child of 7 = null (-1)
The first not-null node (of the previous level) is treated as the parent of the first two nodes of the current level. The second not-null node (of the previous level) is treated as the parent node for the next two nodes of the current level, and so on.
The input ends when all nodes at the last level are null (-1).
Print the vector/list of all the elements of the top view of the given tree from left to right.
You do not need to print anything; it has already been taken care of. Just implement the given function.
1 2 3 4 5 -1 6 -1 7 -1 -1 8 -1 9 -1 -1 11 10 -1 -1 -1 -1 -1
10 4 2 1 3 6
The binary tree is:
Consider the vertical lines in the figure. The top view contains the topmost node from each vertical line.
In test case 1,
1 2 3 4 5 6 7 8 9 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
8 4 2 1 3 7
The binary tree is:
From left to right, the top view of the tree will be [8,4,2,1,3,7], where 9, 5 and 6 will be hidden when we see from the top of the tree.
The expected time complexity is O(n * log(n)).
1 <= 'n' <= 10000
1 <= data in any node <= 10 ^ 6
Time limit: 1 sec
How will a node be hidden by another node?
As we know that all three traversals, i.e. pre-order, in-order and post-order, visit the tree node at once. We can use any of them. Here we are going to use pre-order traversal for the explanation. So while traversing in the pre-order traversal, we will keep track of horizontal distance of the node which is going to be visited from the root node, and we also keep track of the vertical level of that node (where the vertical level of root node would be ‘0’ and its children would be ‘1’ and so on.... ). We will be using the Map which stores the horizontal distance of the node from the root as the key and value in the map maintains a pair of containing the value of the node and the level of the node.
The steps are as follows:
applyPreorder(root , hDistance, level,visited) = { applyPreorder(root->left , hDistance-1, level+1,visited) , applyPreorder(root->right , hDistance+1, level+1,visited )}
3. For every ‘hDistance’ check whether it is visited or not? If it is not visited, then make it visited with the value of node and ‘level’ and if it is already visited, then check if the previous stored ‘level’ is greater than then the current level. If yes, then store the current node because the previous node now is hidden by the current node because the current node has a lesser height.
4. Once we are done with pre-order, our map contains ‘hDistance’ as the key and value corresponding to each ‘hDistance’ stores the pair of nodes and their level that are visible from the top of the tree at that ‘hDistance’. So iterate over the map and store the value of the node in array/list. Let’s say ‘topView’.
5. Return the ‘topView’.
O(n * log(n)), Where 'n' is the number of nodes in the given binary tree.
Since we are traversing at every node and storing the horizontal distance of every node into Map, inserting an element into the map will take O(log n) time. In the worst case (Skewed Trees), there will be 'n' distinct horizontal distance, so it will take O(n * log(n)). While for the 'n' element, push and pop operation take O(1) time for the queue and also inserting and searching into the list take O(1) time. So overall time complexity will be O(n * log(n)).
O(n), Where 'n' is the number of nodes in the given binary tree.
Since we are storing the top view of the tree, so in the worst case (Skewed Trees), all nodes of the given tree will be the top view elements so, there will be 'n' distinct horizontal distance to be stored and also in that case stack size for recursion will be O(n). So overall space complexity will be O(n).