485. 最大连续 1 的个数 - 力扣(LeetCode) (leetcode-cn.com)
class Solution {
public:
int findMaxConsecutiveOnes(vector<int>& nums) {
int max=0;
int temp=0;
for(int i=0;i<nums.size();i++){
if(nums[i]==0){
if(temp>max) max=temp;
temp=0;
}
else temp++;
}
if(temp>max) max=temp;
return max;
}
};