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

**Binary Tree Postorder Traversal

时间:2016-10-06 07:02:22      阅读:163      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!