545. Boundary of Binary Tree
Problem description:
The boundary of a binary tree is the concatenation of the root, the left boundary, the leaves ordered from left-to-right, and the reverse order of the right boundary.
The left boundary is the set of nodes defined by the following:
- The root node’s left child is in the left boundary. If the root does not have a left child, then the left boundary is empty.
- If a node in the left boundary and has a left child, then the left child is in the left boundary.
- If a node is in the left boundary, has no left child, but has a right child, then the right child is in the left boundary.
- The leftmost leaf is not in the left boundary.
The right boundary is similar to the left boundary, except it is the right side of the root’s right subtree. Again, the leaf is not part of the right boundary, and the right boundary is empty if the root does not have a right child.
The leaves are nodes that do not have any children. For this problem, the root is not a leaf.
Given the root
of a binary tree, return the values of its boundary.
Example 1:
1 | Input: root = [1,null,2,3,4] |
Example 2:
1 | Input: root = [1,2,3,4,5,6,null,null,null,7,8,9,10] |
Solution:
The result is asking for three part
- node on left path
- leaves
- node in right path
Since we care about ordering.
For nodes on left path
, we want to find a node have value and it is not a leave(have child).
For leaves
, we want to start from left side, and find a node does not have child. Then search for right leaves.
For nodes on right path
, we want to find find a node have value and it is not a leave(have child). But we want to start from right bottom part. that’s why we use post-order traversal.
pre-order for left boundary , in-order for bottom boundary (because it’s basically sea-sawing the bottom) and post-order (but going right node first) for right boundary
1 | class Solution: |
time complexity: $O(n)$
space complexity: $O(1)$
reference:
related problem: