forked from haoel/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
maximumSubArray.cpp
73 lines (64 loc) · 1.67 KB
/
maximumSubArray.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
// Source : https://oj.leetcode.com/problems/maximum-subarray/
// Author : Hao Chen
// Date : 2014-06-20
/**********************************************************************************
*
* Find the contiguous subarray within an array (containing at least one number)
* which has the largest sum.
*
* For example, given the array [−2,1,−3,4,−1,2,1,−5,4],
* the contiguous subarray [4,−1,2,1] has the largest sum = 6.
*
* More practice:
*
* If you have figured out the O(n) solution, try coding another solution using
* the divide and conquer approach, which is more subtle.
*
*
**********************************************************************************/
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#define INT_MIN (-2147483647 - 1)
int maxSubArray1(int A[], int n);
int maxSubArray2(int A[], int n);
int max(int x, int y){
return x>y?x:y;
}
int maxSubArray(int A[], int n) {
if (random()%2){
return maxSubArray1(A, n);
}
return maxSubArray2(A, n);
}
int maxSubArray1(int A[], int n) {
int *sum = new int[n];
sum[0] = A[0];
int m = A[0];
for (int i=1; i<n; i++){
sum[i] = max(A[i], A[i] + sum[i-1]);
m = max(m, sum[i]);
}
delete[] sum;
return m;
}
int maxSubArray2(int A[], int n) {
int m=INT_MIN;
int sum=0;
for (int i=0; i<n; i++){
sum += A[i];
m = max(sum, m);
if (sum<0){
sum = 0;
}
}
return m;
}
int main()
{
srand(time(NULL));
int a[]= {-2,1,-3,4,-1,2,1,-5,4};
printf("%d\n", maxSubArray(a, sizeof(a)/sizeof(int)));
printf("%d\n", maxSubArray(a, sizeof(a)/sizeof(int)));
return 0;
}