其他分享
首页 > 其他分享> > leetcode(24)-最大子序列和

leetcode(24)-最大子序列和

作者:互联网

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

方法1:暴力解法

很显然会报 超过时间限制。

/**
 * @param {number[]} nums
 * @return {number}
 */
var maxSubArray = function(nums) {
    let begin = 0;
    let end = 1;
    let maxSum = Number.NEGATIVE_INFINITY;
    for(let i = 0; i<nums.length;i++){
        for(let j =i+1;j<=nums.length;j++){
            let temSum = 0;
            nums.slice(i,j).forEach(el=>{
                temSum+=el;
            })
            if(temSum>maxSum){
                maxSum = temSum;
                begin = i;
                end = j;
            }
        }
    }
    return maxSum;
};

 

标签:24,nums,temSum,number,maxSum,let,数组,序列,leetcode
来源: https://www.cnblogs.com/KYSpring/p/14787626.html