2020-05-30 07:26:30 +08:00
|
|
|
#include <climits>
|
|
|
|
#include <iostream>
|
2019-12-04 15:47:48 +08:00
|
|
|
|
2020-05-30 07:26:30 +08:00
|
|
|
int maxSubArraySum(int a[], int size)
|
|
|
|
{
|
2019-12-04 15:47:48 +08:00
|
|
|
int max_so_far = INT_MIN, max_ending_here = 0;
|
|
|
|
|
2020-05-30 07:26:30 +08:00
|
|
|
for (int i = 0; i < size; i++)
|
|
|
|
{
|
2019-12-04 15:47:48 +08:00
|
|
|
max_ending_here = max_ending_here + a[i];
|
|
|
|
if (max_so_far < max_ending_here)
|
|
|
|
max_so_far = max_ending_here;
|
|
|
|
|
|
|
|
if (max_ending_here < 0)
|
|
|
|
max_ending_here = 0;
|
|
|
|
}
|
|
|
|
return max_so_far;
|
|
|
|
}
|
|
|
|
|
2020-05-30 07:26:30 +08:00
|
|
|
int main()
|
|
|
|
{
|
2019-12-04 15:47:48 +08:00
|
|
|
int n, i;
|
|
|
|
std::cout << "Enter the number of elements \n";
|
|
|
|
std::cin >> n;
|
|
|
|
int a[n]; // NOLINT
|
2020-05-30 07:26:30 +08:00
|
|
|
for (i = 0; i < n; i++)
|
|
|
|
{
|
2019-12-04 15:47:48 +08:00
|
|
|
std::cin >> a[i];
|
|
|
|
}
|
|
|
|
int max_sum = maxSubArraySum(a, n);
|
|
|
|
std::cout << "Maximum contiguous sum is " << max_sum;
|
|
|
|
return 0;
|
|
|
|
}
|