Right View of Binary Tree
Given a binary tree of integers, your task is to output the right view of the tree.
The right view of a binary tree includes the nodes that are visible when the tree is observed from the right, listed from top to bottom.
Input:
The first line contains an integer 'T', the number of test cases. Each test case consists of a line of integers representing the level order traversal of the tree. Use -1 for null nodes.
Output:
For each test case, print the right view of the tree on a new line.
Example:
Input:
1
1 2 3 4 -1 5 6 -1 7 -1 -1 -1 -1 -1 -1
Output:
1 3 6 7
Constraints:
- 1 <= T <= 100
- 1 <= N <= 105
- -109 <= data <= 109
Note: No need to print anything explicitly. The function should return the appropriate output.

AnswerBot
4mo
The task is to output the right view of a binary tree given its level order traversal.
Traverse the tree level by level and keep track of the rightmost node at each level
Use a queue to perform level or...read more
Help your peers!
Add answer anonymously...
Scaleneworks Software Developer interview questions & answers
A Software Developer was asked Q. Right View of Binary Tree Given a binary tree of integers, your task is to outpu...read more
A Software Developer was asked Q. Buy and Sell Stock Problem Statement Imagine you are Harshad Mehta's friend, and...read more
A Software Developer was asked Q. Multiply Linked Lists Problem Statement Your task is to multiply two numbers rep...read more
Popular interview questions of Software Developer
A Software Developer was asked Q1. Right View of Binary Tree Given a binary tree of integers, your task is to outpu...read more
A Software Developer was asked Q2. Buy and Sell Stock Problem Statement Imagine you are Harshad Mehta's friend, and...read more
A Software Developer was asked Q3. Multiply Linked Lists Problem Statement Your task is to multiply two numbers rep...read more
>
Scaleneworks Software Developer Interview Questions
Stay ahead in your career. Get AmbitionBox app


Trusted by over 1.5 Crore job seekers to find their right fit company
80 L+
Reviews
10L+
Interviews
4 Cr+
Salaries
1.5 Cr+
Users
Contribute to help millions
AmbitionBox Awards
Get AmbitionBox app

