LeetCode53 最大子序列和

Posted Ermiao

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode53 最大子序列和相关的知识,希望对你有一定的参考价值。

题目

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

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

示例 2:
输入:nums = [1]
输出:1

示例 3: 
输入:nums = [0]
输出:0

示例 4: 
输入:nums = [-1]
输出:-1

示例 5:
输入:nums = [-100000]
输出:-100000

 提示: 
 1 <= nums.length <= 3 * 104 
 -105 <= nums[i] <= 105 

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

方法

1. 动态规划

如果前边相加的和小于0则舍弃前边的数从下一个重新加和,并保留最大和

动态规划1
  • 时间复杂度:O(n)
  • 空间复杂度:O(n)
class Solution {
    public int maxSubArray(int[] nums) {
        if(nums==null||nums.length<=0){
            return 0;
        }
        int[] dp = new int[nums.length];
        int max = nums[0];
        dp[0]=nums[0];
        for(int i=1;i<nums.length;i++){
            dp[i]= Math.max(nums[i],nums[i]+dp[i-1]);
            max = Math.max(dp[i],max);
        }
        return max;
    }
}
动态规划2
  • 时间复杂度:O(n)
  • 空间复杂度:O(1)
class Solution {
    public int maxSubArray(int[] nums) {
        if(nums==null||nums.length<=0){
            return 0;
        }
        int pre = nums[0];
        int max = nums[0];
        for(int i=1;i<nums.length;i++){
            pre= Math.max(nums[i],nums[i]+pre);
            max = Math.max(pre,max);
        }
        return max;
    }
}

2. 分治

以上是关于LeetCode53 最大子序列和的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode--53 最大连续子序列(总结)

LeetCode 53. 最大子序和

Leetcode53(求最大子序和):纯逻辑思路

leetcode刷题18

53 Maximum Subarray

c++后台开发面试常见知识点总结算法手写