Leetcode_53_最大子序和_贪心

特判一下全负数
接着每当出现一段数总和为负数,就全部丢弃
每当出现一段数总和为正数,并且增加的是正数,更新答案
与标程的动态规划以及分治有异曲同工之妙

class Solution {
    public int maxSubArray(int[] nums) {
        int ans = 0;
        int now = 0;
        boolean flag = true;
        for (int num : nums) {
            if (num >= 0) {
                flag = false;
                break;
            }
        }
        if (flag == true) {
            int maxNum = nums[0];
            for (int num : nums) {
                if (num > maxNum) {
                    maxNum = num;
                }
            }
            return maxNum;
        }
        for (int i = 0; i < nums.length; i++) {
            if (now + nums[i] > 0) {
                now += nums[i];
                if (nums[i] > 0) {
                    ans = Math.max(ans, now);
                }
            } else {
                now = 0;
            }
        }
        return ans;
    }
}

2021/8/22 动归重写

// 冲刺011
class Solution {
    public int maxSubArray(int[] nums) {
        int ans = nums[0];
        int now = nums[0];
        int len = nums.length;
        for (int i = 1; i < len; i++) {
            now = Math.max(now + nums[i], nums[i]);
            ans = Math.max(now, ans);
        }
        return ans;
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值