Determine the Left View of a Binary Tree
You are given a binary tree of integers. Your task is to determine the left view of the binary tree. The left view consists of nodes that are visible when the tree is viewed from the left side.
Example:
Input:
T = 1
Binary Tree Level Order Input: 1 2 3 4 -1 5 6 -1 7 -1 -1 -1 -1 -1 -1
Output:
1 2 4 7
Explanation:
The left view of the binary tree is 1, 2, 4, 7 as shown in the image below:
Constraints:
- 1 <= T <= 100
- 0 <= N <= 3000
- 1 <= data <= 105 and data ≠ -1
Note:
You do not need to handle any input/output operations; just implement the function to return the required result.

AnswerBot
4mo
The task is to determine the left view of a binary tree, which consists of nodes visible when viewed from the left side.
Traverse the binary tree in a level order manner and keep track of the leftmost ...read more
Help your peers!
Add answer anonymously...
Arcesium Software Developer Intern interview questions & answers
A Software Developer Intern was asked Q. 1) Maximum meetings in one room 2)Bottom view of tree 3) Serialize deserialize b...read more
A Software Developer Intern was asked Q. Number of Islands Problem Statement You are given a non-empty grid that consists...read more
A Software Developer Intern was asked Q. N-th Node From The End Problem Statement You are provided with a Singly Linked L...read more
Popular interview questions of Software Developer Intern
A Software Developer Intern was asked Q1. 1) Maximum meetings in one room 2)Bottom view of tree 3) Serialize deserialize b...read more
A Software Developer Intern was asked Q2. Number of Islands Problem Statement You are given a non-empty grid that consists...read more
A Software Developer Intern was asked Q3. N-th Node From The End Problem Statement You are provided with a Singly Linked L...read more
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

