LeetCode p145 Binary Tree Postorder Traversal 题解
1.题目:
Given a binary tree, return the postorder traversal of its nodes’ values.
For example:
Given binary tree {1,#,2,3},
1
\
2
/
3
题意:
返回一个数的后序遍历。
2.解题思路:
后序遍历首先遍历左子树,然后遍历右子树,最后访问根结点。
dp
3.代码
1 |
|