Leetcode 145. 二叉树的后序遍历
Posted DCREN
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Leetcode 145. 二叉树的后序遍历相关的知识,希望对你有一定的参考价值。
题目链接
https://leetcode-cn.com/problems/binary-tree-postorder-traversal/description/
题目描述
给定一个二叉树,返回它的 后序 遍历。
示例:
输入: [1,null,2,3]
1
2
/
3
输出: [3,2,1]
进阶: 递归算法很简单,你可以通过迭代算法完成吗?
题解
后序遍历,使用一个堆栈来存储数据,当一个节点的子节点已经遍历过了或者该节点是叶子节点时,就把该节点添加进列表里。
代码
/**
* Definition for a binary tree node.
* public class TreeNode {
* int val;
* TreeNode left;
* TreeNode right;
* TreeNode(int x) { val = x; }
* }
*/
class Solution {
public List<Integer> postorderTraversal(TreeNode root) {
List<Integer> list = new ArrayList<>();
if (root == null) { return list; }
Stack<TreeNode> stack = new Stack<>();
TreeNode pre = null;
stack.push(root);
while (!stack.isEmpty()) {
TreeNode node = stack.peek();
if ((node.left == null && node.right == null)
|| (pre != null && (pre == node.left || pre == node.right))) {
list.add(node.val);
pre = node;
stack.pop();
} else {
if (node.right != null) {
stack.push(node.right);
}
if (node.left != null) {
stack.push(node.left);
}
}
}
return list;
}
}
以上是关于Leetcode 145. 二叉树的后序遍历的主要内容,如果未能解决你的问题,请参考以下文章
LeetCode 145. 二叉树的后序遍历 (用栈实现后序遍历二叉树的非递归算法)
LeetCode 145. 二叉树的后序遍历c++/java详细题解