
输出二叉树的后序遍历序列。
145. Binary Tree Postorder Traversal
Given a binary tree, return the postorder traversal of its nodes’ values.
For example:
Given binary tree [1,null,2,3],
1 |
1 |
return [3,2,1].
Note: Recursive solution is trivial, could you do it iteratively?
1 |
public List<Integer> (TreeNode root) { |




近期评论