Skip to content
Advertisement

Trying to print top view of a tree using two if statements

Problem Statement

You are given a pointer to the root of a binary tree. Print the top view of the binary tree. You only have to complete the function.

My Code:

JavaScript

The two if statements are executed every time the function is called, but I need only one of them to execute. I tried switch but its giving constant expression error. I have already found a different solution for this problem.

So I only want to know if we can make only one if execute at a time i.e, is there a way to fix my code without changing the approach?

enter image description here enter image description here

Problem link: https://www.hackerrank.com/challenges/tree-top-view

Advertisement

Answer

This problem can be very easily solved by using:

Stack: To print the root and the left subtree.

Queue: To print the right subtree.

Your function should be like this:

JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement