首页 > 其他 > 详细

145. Binary Tree Postorder Traversal

时间:2017-10-17 09:18:53      阅读:246      评论:0      收藏:0      [点我收藏+]
class Solution {
    public List<Integer> postorderTraversal(TreeNode root) {
        Stack<TreeNode> stack=new Stack<TreeNode>();
        List<Integer> res=new ArrayList<Integer>();
        while(root!=null||!stack.isEmpty())
        {
            while(root!=null)
            {
                res.add(0, root.val);
                stack.push(root);
                root=root.right;
            }
            root=stack.pop().left;
        }
        return res;
    }
}

  

145. Binary Tree Postorder Traversal

原文:http://www.cnblogs.com/asuran/p/7679747.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!