博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Minimum Size Subarray Sum
阅读量:4074 次
发布时间:2019-05-25

本文共 732 字,大约阅读时间需要 2 分钟。

Minimum Size Subarray Sum

Given an array of n positive integers and a positive integer s, find the minimal length of a subarray of which the sum ≥ s. If there isn't one, return 0 instead.

For example, given the array [2,3,1,2,4,3] and s = 7,
the subarray [4,3] has the minimal length under the problem constraint.

Java代码:

public class Solution {    public int minSubArrayLen(int s, int[] nums) {        int min_len =Integer.MAX_VALUE;		int sum =0;				for(int i=0;i
=s) return 1; sum = nums[i]; for(int j=i-1;j>=0;j--){ sum+=nums[j]; if(sum >=s || (i-j+1)>=min_len){ min_len = min_len <(i-j+1)?min_len:(i-j+1); break; } } } if(min_len == Integer.MAX_VALUE) min_len = 0; return min_len; }}
 

转载地址:http://lvuni.baihongyu.com/

你可能感兴趣的文章
CentOS Tensorflow 基础环境配置
查看>>
centOS7安装FTP
查看>>
FTP的命令
查看>>
CentOS操作系统下安装yum的方法
查看>>
ping 报name or service not known
查看>>
FTP 常见问题
查看>>
zookeeper单机集群安装
查看>>
do_generic_file_read()函数
查看>>
Python学习笔记之数据类型
查看>>
Python学习笔记之特点
查看>>
shell 快捷键
查看>>
VIM滚屏操作
查看>>
EMC 2014存储布局及十大新技术要点
查看>>
linux内核内存管理(zone_dma zone_normal zone_highmem)
查看>>
将file文件内容转成字符串
查看>>
循环队列---数据结构和算法
查看>>
优先级队列-数据结构和算法
查看>>
链接点--数据结构和算法
查看>>
servlet中请求转发(forword)与重定向(sendredirect)的区别
查看>>
Spring4的IoC和DI的区别
查看>>