lintcode.44 最小子数组

Posted 会飞的雅蠛蝶

tags:

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

最小子数组

 

给定一个整数数组,找到一个具有最小和的子数组。返回其最小和。

注意事项

子数组最少包含一个数字

样例

给出数组[1, -1, -2, 1],返回 -3

标签
 
 
 
暴力
class Solution {
public:
    /*
     * @param nums: a list of integers
     * @return: A integer indicate the sum of minimum subarray
     */
    int minSubArray(vector<int> &nums) {
        // write your code here
        int s=nums.size();
        int res=nums[0];
        for(int i=0;i<s;i++)
        {
            int cn=nums[i];
            if(cn<res)
                res=cn;
            for(int j=i+1;j<s;j++)
            {
                cn+=nums[j];
                if(cn<=res)
                    res=cn;
            }
        }
        return res;
    }
};

贪心

 

class Solution {
public:
    /*
     * @param nums: a list of integers
     * @return: A integer indicate the sum of minimum subarray
     */
    int minSubArray(vector<int> &nums) {
        // write your code here
        int s=nums.size();
        int res=nums[0];
        int cn=0;
        for(int i=0;i<s;i++)
        {
            cn +=nums[i];
            if(res>cn)
                res=cn;
            if(cn>0)
                cn=0;
        }
        return res;
    }
};

  

以上是关于lintcode.44 最小子数组的主要内容,如果未能解决你的问题,请参考以下文章

406. 和大于S的最小子数组

最小子数组

LintCode Python 简单级题目 最小子数组和最大子数组和

将数组拆分为包含唯一对象组合的最小子数组

44. 最小子数组

java 具有k个元素的最小子数组