一叶之秋lala的gravatar头像
一叶之秋lala 2017-04-26 21:25:18

最长连续子串和的java代码(超简单)

最长连续子串和的java代码(超简单)


public class Test1 {
    public static void main(String[] args) {
        int[] arr = new int[]{1,3,3,-1,-5,3,7,-10};
        int max = arr[0];
        int sum = 0;
        
        for(int i=0; i<arr.length; i++) {
            sum += arr[i];
            
            if(sum < 0) {
                sum = 0;
            }
            
            if(sum > max) {
                max = sum;
            }
        }
        System.out.println("Max:" + max);
    }
}


打赏

文件名:最长连续子串和.zip,文件大小:0.522K 下载
最代码最近下载分享源代码列表最近下载
Ginna123  LV2 2017年5月1日
最代码最近浏览分享源代码列表最近浏览
wxcdLyy 2021年9月12日
暂无贡献等级
小资李  LV13 2019年9月17日
tjh0102 2019年3月7日
暂无贡献等级
zyl  LV34 2019年2月25日
TerryGaoBo  LV9 2018年11月10日
一道念  LV10 2018年8月23日
Dz______  LV2 2018年8月2日
karn2008  LV3 2018年7月13日
邱小明  LV3 2018年5月19日
TerryLG  LV1 2018年4月21日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友