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

[LeetCode] 515. Find Largest Value in Each Tree Row

时间:2017-05-29 14:06:55      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:class   ble   solution   for   efi   new   arraylist   ini   code   

https://leetcode.com/problems/find-largest-value-in-each-tree-row/

BFS,和树的 level order traversal 差不多

/**
 * 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<Integer> largestValues(TreeNode root) {
        List<Integer> result = new ArrayList<>();
        if (root == null) {
            return result;
        }
        Queue<TreeNode> queue = new LinkedList<>();
        int size = 1;
        int i = 0;
        int max = Integer.MIN_VALUE;
        queue.offer(root);
        while (!queue.isEmpty()) {
            TreeNode current = queue.poll();
            max = Math.max(max, current.val);
            if (current.left != null) {
                queue.offer(current.left);
            }
            if (current.right != null) {
                queue.offer(current.right);
            }
            
            i++;
            if (size == i) {
                result.add(max);
                max = Integer.MIN_VALUE;
                size = queue.size();
                i = 0;
            }
        }
        
        return result;
    }
}

 

[LeetCode] 515. Find Largest Value in Each Tree Row

标签:class   ble   solution   for   efi   new   arraylist   ini   code   

原文地址:http://www.cnblogs.com/chencode/p/find-largest-value-in-each-tree-row.html

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