145. Binary Tree Postorder Traversal
https://leetcode.com/problems/binary-tree-postorder-traversal/
iterative
tricky way: like do preorder to do, but the seq of postorder is not correct, but the answer is correct
recursion
Last updated
https://leetcode.com/problems/binary-tree-postorder-traversal/
iterative
tricky way: like do preorder to do, but the seq of postorder is not correct, but the answer is correct
Last updated