首页 > 其他 > 详细

**Binary Tree Postorder Traversal

时间:2016-10-06 07:00:10      阅读:215      评论:0      收藏:0      [点我收藏+]

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

For example:
Given binary tree {1,#,2,3},

   1
         2
    /
   3

 

return [3,2,1].

 

牛解法:postorder就是L-R-ROOT,这里先ROOT-R-L,再把结果reverse

public class Solution {
public List<Integer> postorderTraversal(TreeNode root) {
    List<Integer> results = new ArrayList<Integer>();
    Deque<TreeNode> stack = new ArrayDeque<TreeNode>();
    while (!stack.isEmpty() || root != null) {
        if (root != null) {
            stack.push(root);
            results.add(root.val);
            root = root.right;
        } else {
            root = stack.pop().left;
        }
    }
    Collections.reverse(results);
    return results;
}
}

关于deque:https://docs.oracle.com/javase/7/docs/api/java/util/Deque.html

reference:https://leetcode.com/discuss/9736/accepted-code-with-explaination-does-anyone-have-better-idea

**Binary Tree Postorder Traversal

原文:http://www.cnblogs.com/hygeia/p/5101915.html

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