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

LeetCode - 513. Find Bottom Left Tree Value

时间:2017-08-09 19:09:52      阅读:97      评论:0      收藏:0      [点我收藏+]

标签:roo   bin   blog   mos   list   int   init   treenode   ast   

Given a binary tree, find the leftmost value in the last row of the tree.

Example 1:

Input:

    2
   /   1   3

Output:
1

 

Example 2: 

Input:

        1
       /       2   3
     /   /     4   5   6
       /
      7

Output:
7
/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode(int x) { val = x; }
 * }
 */
import java.util.Queue;
import java.util.LinkedList;
public class Solution {
    
    public int findBottomLeftValue(TreeNode root) {
        if (root == null)
            return 0;
        Queue<TreeNode> q = new LinkedList<TreeNode>();
        q.offer(root);
        int ret = 0;
        while ( ! q.isEmpty()) {
            TreeNode curr = q.peek();
            ret = curr.val;
            int size = q.size();
            while (size-- > 0) {
                TreeNode nodei = q.poll();
                if (nodei.left != null)
                    q.offer(nodei.left);
                if (nodei.right != null)
                    q.offer(nodei.right);
            }
        }
        return ret;
    }
    
    
}

 

LeetCode - 513. Find Bottom Left Tree Value

标签:roo   bin   blog   mos   list   int   init   treenode   ast   

原文地址:http://www.cnblogs.com/wxisme/p/7327028.html

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