Binary Tree Postorder Traversal Given a binary tree, return the postorder traversal of its nodes’ values. For example: Given binary tree {1, #, 2, 3}, 1 \ 2 / 3 return [3, 2, 1]. Note: Recursive solution is trivial, could you do it iteratively?
| 38 | /// return [3, 2, 1]. |
| 39 | /// Note: Recursive solution is trivial, could you do it iteratively? |
| 40 | pub struct PostOrderVisitor; |
| 41 | |
| 42 | /// Binary Tree Level Order Traversal |
| 43 | /// Given a binary tree, return the level order traversal of its nodes’ |
nothing calls this directly
no outgoing calls
no test coverage detected