码迷,mamicode.com
首页 > 编程语言 > 详细

107. Binary Tree Level Order Traversal II Java Solutions

时间:2016-05-02 18:24:17      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:

Given a binary tree, return the bottom-up level order traversal of its nodes‘ values. (ie, from left to right, level by level from leaf to root).

For example:
Given binary tree {3,9,20,#,#,15,7},

    3
   /   9  20
    /     15   7

return its bottom-up level order traversal as:

[
  [15,7],
  [9,20],
  [3]
]

confused what "{1,#,2,3}" means? > read more on how binary tree is serialized on OJ.

 

/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode(int x) { val = x; }
 * }
 */
public class Solution {
    public List<List<Integer>> levelOrderBottom(TreeNode root) {
        List<List<Integer>> res = new ArrayList<List<Integer>>();
        Stack<List<Integer>> stack = new Stack<List<Integer>>();
        Queue<TreeNode> q = new LinkedList<TreeNode>();
        if(root == null) return res;
        q.add(root);
        while(!q.isEmpty()){
            List<Integer> tmp = new ArrayList<Integer>();
            int size = q.size();
            for(int i = 0; i< size; i++){
                TreeNode node = q.poll();
                tmp.add(node.val);
                if(node.left != null) q.add(node.left);
                if(node.right != null) q.add(node.right);
            }
            stack.push(tmp);
            
        }
        while(!stack.isEmpty()){
            res.add(stack.pop());
        }
        return res;
    }
}

 

107. Binary Tree Level Order Traversal II Java Solutions

标签:

原文地址:http://www.cnblogs.com/guoguolan/p/5452625.html

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