Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Boundary Traversal of binary tree

https://practice.geeksforgeeks.org/problems/boundary-traversal-of-binary-tree/1/

Leetcode 545 - https://leetcode.com/problems/boundary-of-binary-tree/description/

Given a Binary Tree, find its Boundary Traversal. The traversal should be in the following order:

Left boundary nodes: defined as the path from the root to the left-most node ie- the leaf node you could reach when you always travel preferring the left subtree over the right subtree. Leaf nodes: All the leaf nodes except for the ones that are part of left or right boundary. Reverse right boundary nodes: defined as the path from the right-most node to the root. The right-most node is the leaf node you could reach when you always travel preferring the right subtree over the left subtree. Exclude the root from this as it was already included in the traversal of left boundary nodes. Note: If the root doesn't have a left subtree or right subtree, then the root itself is the left or right boundary.

Example 1:

Input: 1 /
2 3

Output: 1 2 3 Explanation:

Example 2:

Input: 20 /
8 22 / \
4 12 25 / \ 10 14

Output: 20 8 4 10 14 25 22 Explanation:

Your Task: This is a function problem. You don't have to take input. Just complete the function printBoundary() that takes the root node as input and returns an array containing the boundary values in anti-clockwise.

Expected Time Complexity: O(N). Expected Auxiliary Space: O(Height of the Tree).

Constraints: 1 ≤ Number of nodes ≤ 10^5 1 ≤ Data of a node ≤ 10^5