继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

给定一个二叉树,返回它的后序遍历。

car
关注TA
已关注
手记 83
粉丝 56
获赞 363
import java.util.ArrayList;
import java.util.List;
import java.util.Stack;
public class Solution {
    public List<Integer> postorderTraversal(TreeNode root) {
        List<Integer> res = new ArrayList<Integer>();
        if(root == null)
            return res;
        Stack<TreeNode> stack = new Stack<TreeNode>();
        TreeNode pre = null;
        stack.push(root);
        while(!stack.isEmpty()){
            TreeNode curr = stack.peek();
            if((curr.left == null && curr.right == null) ||
                    (pre != null && (pre == curr.left || pre == curr.right))){
                res.add(curr.val);
                pre = curr;
                stack.pop();
            }else{
                if(curr.right != null) stack.push(curr.right);
                if(curr.left != null) stack.push(curr.left);
            }
        }
        return res;
    }
}

后序遍历,左右根,左右节点都为空,添加根元素,当前节点不完空,不是左右节点,添加元素

打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP