Bottom view of BT

Binary Trees FAQs Medium
  • Fun fact: This problem is not just a theoretical one but has practical usage in software development too, especially in graphical user interface (GUI) applications and game development
  • In these areas, constructing and traversing trees, as well as deciding which node (or element) to showcase when two nodes overlap, are common scenarios
  • For instance, a game might use this concept to decide which character or object to highlight when two characters are at the same position on the Y-axis but at different depths (Z-axis)
  • -which is akin to viewing from the bottom
  • The concepts used to solve this problem are also integral to data visualization, database systems, and machine learning algorithms for decision trees

Given root of binary tree, return the bottom view of the binary tree.


The bottom view of a binary tree is the set of nodes visible when the tree is viewed from the bottom. Return nodes from the leftmost node to the rightmost node. Also if 2 nodes are outside the shadow of the tree and are at the same position then consider the node that appears later in level traversal.

Examples:

Input : root = [20, 8, 22, 5, 3, null, 25, null, null, 10 ,14]

Output : [5, 10, 3, 14, 25]

Explanation : From left to right the path is as follows :

First we encounter node with value 5.

Then we have nodes 8 , 10 but from bottom only 10 will be visible.

Next we have 20 , 3 but from bottom only 3 will be visible.

Next we have 14 , 22 but from bottom only 14 will be visible.

Then we encounter node with value 25.

Input : root = [20, 8, 22, 5, 3, 4, 25, null, null, 10 ,14]

Output : [5, 10, 4, 14, 25]

Explanation : From left to right the path is as follows :

First we encounter node with value 5.

Then we have nodes 8 , 10 but from bottom only 10 will be visible.

Next we have 20 , 3 and 4. The 3 and 4 will be nodes visible from bottom but as the node 4 appears later from left to right , so only node 4 will be considered visible.

Next we have 14 , 22 but from bottom only 14 will be visible.

Then we encounter node with value 25.

Input: root = [10, 20, 30, 40, 60]


Constraints

  • 1 <= Number of Nodes <= 104
  • -103 <= Node.val <= 103

Hints

  • Use a queue of tuples (node, horizontal_distance), starting with (root, 0). Process each node level by level, ensuring that the last node encountered at each HD is stored.
  • Use a hashmap (bottom_nodes) where: Key: Horizontal Distance (HD). Value: The last node encountered at that HD. As BFS progresses, overwrite the existing value in bottom_nodes[HD] since we need the last encountered node.

Company Tags

Reddit Alibaba JPMorgan Chase Rockstar Games Pinterest Byju's PayPal DoorDash Western Digital Mastercard Deloitte Flipkart Stripe Siemens Healthineers OYO Rooms Zynga Teladoc Health Chewy Roblox Ubisoft Cerner Swiggy Zoho Robinhood Philips Healthcare Google Microsoft Amazon Meta Apple Netflix Adobe