Max Consecutive Ones
题目链接:https://leetcode.com/problems...
</>复制代码
public class Solution {
public int findMaxConsecutiveOnes(int[] nums) {
// loop invariant:
// global is the max so far, local is the max including current nums[i]
int global = 0;
int local = 0;
for(int i = 0; i < nums.length; i++) {
local = (nums[i] == 1 ? local + 1 : 0);
global = Math.max(global, local);
}
return global;
}
}
Max Consecutive Ones II
题目链接:https://leetcode.com/problems...
</>复制代码
public class Solution {
public int findMaxConsecutiveOnes(int[] nums) {
// 2 points, slide window
int i = 0, j = 0;
int global = 0;
// count the number of flip
int count = 0;
while(j < nums.length) {
if(nums[j++] == 0) count++;
while(count > 1) if(nums[i++] == 0) count--;
global = Math.max(global, j - i);
}
return global;
}
}
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/66597.html
摘要:题目链接题目分析给定一个二进制数组只含有和的数组,返回最长的串。思路逐个遍历,若为则计数。遇到则判断当前计数是否大于之前记录的最大数字,并置零。最终代码若觉得本文章对你有用,欢迎用爱发电资助。 D67 485. Max Consecutive Ones 题目链接 485. Max Consecutive Ones 题目分析 给定一个二进制数组(只含有0和1的数组),返回最长的1串。 思...
Problem Given a binary array, find the maximum number of consecutive 1s in this array if you can flip at most one 0. Example 1:Input: [1,0,1,1,0]Output: 4Explanation: Flip the first zero will get the ...
摘要:示例输入输出解释开头的两位和最后的三位都是连续,所以最大连续的个数是注意输入的数组只包含和。输入数组的长度是正整数,且不超过。 公众号:爱写bug 给定一个二进制数组, 计算其中最大连续1的个数。 Given a binary array, find the maximum number of consecutive 1s in this array. 示例 1: 输入: [1,1,0...
摘要:示例输入输出解释开头的两位和最后的三位都是连续,所以最大连续的个数是注意输入的数组只包含和。输入数组的长度是正整数,且不超过。 公众号:爱写bug 给定一个二进制数组, 计算其中最大连续1的个数。 Given a binary array, find the maximum number of consecutive 1s in this array. 示例 1: 输入: [1,1,0...
摘要:示例输入输出解释开头的两位和最后的三位都是连续,所以最大连续的个数是注意输入的数组只包含和。输入数组的长度是正整数,且不超过。 公众号:爱写bug 给定一个二进制数组, 计算其中最大连续1的个数。 Given a binary array, find the maximum number of consecutive 1s in this array. 示例 1: 输入: [1,1,0...
阅读 3641·2021-09-26 09:46
阅读 2912·2021-09-13 10:23
阅读 3703·2021-09-07 10:24
阅读 2467·2019-08-29 13:20
阅读 2992·2019-08-28 17:57
阅读 3159·2019-08-26 13:27
阅读 1263·2019-08-26 12:09
阅读 577·2019-08-26 10:27