145. 二叉树的后序遍历(简单)
给定一个二叉树,返回它的 后序 遍历。
示例:
1 | 输入: [1,null,2,3] |
进阶: 递归算法很简单,你可以通过迭代算法完成吗?
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/binary-tree-postorder-traversal
思路1:
递归
思路2:
迭代
代码1:
1 | class Solution { |
代码2
1 |
给定一个二叉树,返回它的 后序 遍历。
1 | 输入: [1,null,2,3] |
进阶: 递归算法很简单,你可以通过迭代算法完成吗?
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/binary-tree-postorder-traversal
递归
迭代
1 | class Solution { |
1 |