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
To determine the left view of a binary tree, we need to find the nodes that are visible when the tree is viewed from the left side.
Traverse the binary tree in a level order manner and keep track of th...read more
Help your peers!
Add answer anonymously...
Paxcom India Software Engineer interview questions & answers
A Software Engineer was asked Q. Determine the Left View of a Binary Tree You are given a binary tree of integers...read more
A Software Engineer was asked Q. Maximize Expression Value Given an arithmetic expression EXP containing integer ...read more
A Software Engineer was asked Q. Sum Tree Conversion Convert a given binary tree into its sum tree. In a sum tree...read more
Popular interview questions of Software Engineer
A Software Engineer was asked Q1. Determine the Left View of a Binary Tree You are given a binary tree of integers...read more
A Software Engineer was asked Q2. Maximize Expression Value Given an arithmetic expression EXP containing integer ...read more
A Software Engineer was asked Q3. Sum Tree Conversion Convert a given binary tree into its sum tree. In a sum tree...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

