cpp-interview/Problems/LeetcodeProblems/53-maximum-subarray.h
2018-02-09 22:50:19 +08:00

13 lines
320 B
C++

#define MIN_INT -2147483648
class Solution {
public:
int maxSubArray(vector<int>& nums) {
int max = MIN_INT, temp = 0;
for(auto i = 0; i < nums.size(); ++i) {
temp += nums[i];
if(temp > max) max = temp;
if(temp < 0) temp = 0;
}
return max;
}
};