美文网首页
LeetCode 每日一题 [25] 最大子序和

LeetCode 每日一题 [25] 最大子序和

作者: 是小猪童鞋啦 | 来源:发表于2020-06-12 08:13 被阅读0次
    LeetCode 最大子序和 [简单]

    给定一个整数数组 nums ,找到一个具有最大和的连续子数组(子数组最少包含一个元素),返回其最大和。

    来源:力扣(LeetCode)
    链接:https://leetcode-cn.com/problems/maximum-subarray

    示例:

    输入: [-2,1,-3,4,-1,2,1,-5,4],
    输出: 6
    解释: 连续子数组 [4,-1,2,1] 的和最大,为 6。

    进阶:

    如果你已经实现复杂度为 O(n) 的解法,尝试使用更为精妙的分治法求解。

    代码实现
    public class LeetCode_25_MaximumSubarray {
    
        public static void main(String[] args) {
            int[] nums = {-2, 1, -3, 4, -1, 2, 1, -5, 4};
            int res = maxSubArray(nums);
            System.out.println(res);
        }
    
        public static int maxSubArray(int[] nums) {
            int result = Integer.MIN_VALUE;
            int sum = 0;
            for (int i = 0; i < nums.length; i++) {
                sum += nums[i];
                result = Math.max(result, sum);
                if (sum < 0) {
                    sum = 0;
                }
            }
            return result;
        }
    }
    
    

    相关文章

      网友评论

          本文标题:LeetCode 每日一题 [25] 最大子序和

          本文链接:https://www.haomeiwen.com/subject/vgspghtx.html