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

lintcode-medium-Binary Tree Level Order Traversal II

时间:2016-03-14 18:34:10      阅读:147      评论: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).

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]
]
/**
 * Definition of TreeNode:
 * public class TreeNode {
 *     public int val;
 *     public TreeNode left, right;
 *     public TreeNode(int val) {
 *         this.val = val;
 *         this.left = this.right = null;
 *     }
 * }
 */
 
 
public class Solution {
    /**
     * @param root: The root of binary tree.
     * @return: buttom-up level order a list of lists of integer
     */
    public ArrayList<ArrayList<Integer>> levelOrderBottom(TreeNode root) {
        // write your code here
        
        ArrayList<ArrayList<Integer>> result = new ArrayList<ArrayList<Integer>>();
        
        if(root == null)
            return result;
        
        ArrayList<Integer> line = new ArrayList<Integer>();
        Queue<TreeNode> curr = new LinkedList<TreeNode>();
        Queue<TreeNode> next = new LinkedList<TreeNode>();
        
        curr.offer(root);
        
        while(!curr.isEmpty()){
            TreeNode temp = curr.poll();
            
            line.add(temp.val);
            
            if(temp.left != null)
                next.offer(temp.left);
            if(temp.right != null)
                next.offer(temp.right);
            
            if(curr.isEmpty()){
                result.add(0, new ArrayList<Integer>(line));
                curr = next;
                next = new LinkedList<TreeNode>();
                line = new ArrayList<Integer>();
            }
            
        }
        return result;
    }
}

 

lintcode-medium-Binary Tree Level Order Traversal II

标签:

原文地址:http://www.cnblogs.com/goblinengineer/p/5276435.html

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