LeetCode:485. Max Consecutive Ones

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode:485. Max Consecutive Ones相关的知识,希望对你有一定的参考价值。

 1 package Today;
 2 //LeetCode:485. Max Consecutive Ones
 3 /*
 4 Given a binary array, find the maximum number of consecutive 1s in this array.
 5 
 6 Example 1:
 7 Input: [1,1,0,1,1,1]
 8 Output: 3
 9 Explanation: The first two digits or the last three digits are consecutive 1s.
10     The maximum number of consecutive 1s is 3.
11 Note:
12 
13 The input array will only contain 0 and 1.
14 The length of input array is a positive integer and will not exceed 10,000
15  */
16 public class findMaxConsecutiveOnes485 {
17     public static int findMaxConsecutiveOnes(int[] nums) {
18         int max=0;
19         int count=0;
20         for(int i=0;i<nums.length;i++){
21             if(nums[i]==1){
22                 count++;
23             }else{
24                 if(count>max)
25                     max=count;
26                 count=0;
27             }
28             if(count>max)
29                 max=count;
30         
31         }
32         return max;
33     }
34     //study 思路很普通,人家写的好简约
35     public static int findMaxConsecutiveOnes2(int[] nums){
36         int maxhere=0,max=0;
37         for(int num:nums)
38             max=Math.max(max, maxhere=num==0?maxhere=0:maxhere+1);
39         return max;
40     }
41     public static void main(String[] args) {
42         // TODO Auto-generated method stub
43         int[] nums={1,1,0,1,1,1};
44         System.out.println(findMaxConsecutiveOnes(nums));
45         System.out.println(findMaxConsecutiveOnes2(nums));
46     }
47 
48 }

 

以上是关于LeetCode:485. Max Consecutive Ones的主要内容,如果未能解决你的问题,请参考以下文章

[leetcode-485-Max Consecutive Ones]

LeetCode-485. Max Consecutive Ones

LeetCode 485. Max Consecutive Ones

leetcode 485. Max Consecutive Ones

[Leetcode]485. Max Consecutive Ones

leetcode485 python3 88ms 最大连续1的个数