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

LeetCode-485. Max Consecutive Ones

时间:2017-01-20 12:31:10      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:array   this   dig   put   cut   number   bsp   his   nat   

Given a binary array, find the maximum number of consecutive 1s in this array.

Input: [1,1,0,1,1,1]
Output: 3
Explanation: The first two digits or the last three digits are consecutive 1s.
    The maximum number of consecutive 1s is 3.

public class Solution {
    public int findMaxConsecutiveOnes(int[] nums) {
        if (nums == null)
            return 0;
        int sum = 0, b = 0;
        for (int v : nums) {
            b += v;
            if (v == 0)
                b = 0;
            if (sum < b)
                sum = b;
        }
        return sum;
    }
}

 

LeetCode-485. Max Consecutive Ones

标签:array   this   dig   put   cut   number   bsp   his   nat   

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

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