美文网首页
最大子数组

最大子数组

作者: 杰米 | 来源:发表于2016-09-09 16:49 被阅读42次
    给定一个整数数组,找到一个具有最大和的子数组,返回其最大和。
    
     注意事项
    
    子数组最少包含一个数
    
    您在真实的面试中是否遇到过这个题? Yes
    样例
    给出数组[−2,2,−3,4,−1,2,1,−5,3],符合要求的子数组为[4,−1,2,1],其最大和为6
    
    
    class Solution {
    public:    
        /**
         * @param nums: A list of integers
         * @return: A integer indicate the sum of max subarray
         */
        int maxSubArray(vector<int> nums) {
            // write your code here
            int result = nums[0];
            int temp = 0;
            
            for(int i=0;i<nums.size();i++){
                if((temp+nums[i])>=0) {
                    temp = temp + nums[i];
                    if(temp>=result) {
                        result = temp;
                    }
                } else {
                    temp = 0;
                }
                
            }
            return result;
        }
    };
    
    

    相关文章

      网友评论

          本文标题: 最大子数组

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