class Solution {
public:
int alternatingSubarray(vector<int>& nums) {
int n = nums.size();
int i = 0;
int ans = -1;
while(i < n - 1) {
if(nums[i + 1] - nums[i] != 1) {
i++;
continue;
}
int i0 = i;
// i 和 i+1 已经满足要求,从 i+2 开始判断
i += 2;
while(i < n && nums[i] == nums[i0] + (i - i0) % 2) {
i++;
}
// 从 i0 到 i-1 是满足题目要求的(并且无法再延长的)子数组
ans = max(ans, i - i0);
i--;
}
return ans;
}
};
之后我会持续更新,如果喜欢我的文章,请记得一键三连哦,点赞关注收藏,你的每一个赞每一份关注每一次收藏都将是我前进路上的无限动力 !!!↖(▔▽▔)↗感谢支持!