![]() |
VOOZH | about |
Given an N-ary tree, the task is to find the post-order traversal of the given tree iteratively.
Examples:
Input: 1 / | \ 3 2 4 / \ 5 6 Output: [5, 6, 3, 2, 4, 1] Input: 1 / \ 2 3 Output: [2, 3, 1]
Approach:
We have already discussed iterative post-order traversal of binary tree using one stack. We will extend that approach for the n-ary tree. The idea is very simple, for every node we have to traverse all the children of this node (from left to right) before traversing the node.
Pseudo Code:
Below is the implementation of the above approach:
[5, 6, 3, 2, 4, 1]
Time complexity: O(n) where n is no of nodes in a binary tree
Auxiliary space : O(n) because using vector and stack