码迷,mamicode.com
首页 > 其他好文 > 详细

145. Binary Tree Postorder Traversal

时间:2019-08-28 09:13:36      阅读:68      评论:0      收藏:0      [点我收藏+]

标签:out   NPU   bin   ==   example   lis   public   solution   roo   

Given a binary tree, return the postorder traversal of its nodes‘ values.

Example:

Input: [1,null,2,3]
   1
         2
    /
   3

Output: [3,2,1]
class Solution {
    public List<Integer> postorderTraversal(TreeNode root) {
        if (root == null) return new LinkedList();
        Stack<TreeNode> s = new Stack<TreeNode>();
        LinkedList<Integer> res = new LinkedList();
        s.push(root);
        while(!s.empty()){
            TreeNode p = s.pop();
            res.addFirst(p.val);
            //左右根,push进stack是第一次逆,addFirst又逆回来,所以还是左右根
            if(p.left != null){
                s.push(p.left);
            }
            if(p.right != null){
                s.push(p.right);
            }
        }
        return res;
    }
}

LinkedList有addFirst方法,巧妙。

145. Binary Tree Postorder Traversal

标签:out   NPU   bin   ==   example   lis   public   solution   roo   

原文地址:https://www.cnblogs.com/wentiliangkaihua/p/11421651.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!