代码随想录 Leetcode209.长度最小的子数组
发布时间:2023年12月29日
题目:
代码(首刷看解析 2023年12月29日):
class Solution {
public:
int minSubArrayLen( int target, vector<int>& nums) {
int slowIndex = 0,fastIndex = 0;
int n = nums.size();
int length = INT_MAX;
int sum = 0;
for(int fastIndex = 0; fastIndex < n; ++fastIndex){
sum += nums[fastIndex];
while(sum >= target){
int nowLen = fastIndex - slowIndex + 1;
length = length > nowLen ? nowLen : length;
sum -= nums[slowIndex++];
}
}
return length == INT_MAX? 0 : length;
}
};
文章来源:https://blog.csdn.net/qq_52313711/article/details/135284234
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若内容造成侵权/违法违规/事实不符,请联系我的编程经验分享网邮箱:chenni525@qq.com进行投诉反馈,一经查实,立即删除!