Last active
August 6, 2021 10:52
-
-
Save gauravkr0071/076678381b390122f8167061f0686f7c to your computer and use it in GitHub Desktop.
subarray with maximum sum
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<iostream> | |
#include<climits> | |
using namespace std; | |
int maxSubArraySum(int a[], int size) | |
{ | |
int max_so_far = INT_MIN, max_ending_here = 0; | |
for (int i = 0; i < size; i++) | |
{ | |
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; | |
} | |
// this is based on kadane algorithm , and if all elements are negative then kadaane algorithm dont work | |
// __printing maximum subarray__ | |
int maxSubArraySum(int a[], int size) | |
{ | |
int max_so_far = INT_MIN, max_ending_here = 0, | |
start =0, end = 0, s=0; | |
for (int i=0; i< size; i++ ) | |
{ | |
max_ending_here += a[i]; | |
if (max_so_far < max_ending_here) | |
{ | |
max_so_far = max_ending_here; | |
start = s; | |
end = i; | |
} | |
if (max_ending_here < 0) | |
{ | |
max_ending_here = 0; | |
s = i + 1; | |
} | |
} | |
cout << "Maximum contiguous sum is " | |
<< max_so_far << endl; | |
cout << "Starting index "<< start | |
<< endl << "Ending index "<< end << endl; | |
} | |
/*Driver program to test maxSubArraySum*/ | |
int main() | |
{ | |
int a[] = {-2, -3, 4, -1, -2, 1, 5, -3}; | |
int n = sizeof(a)/sizeof(a[0]); | |
int max_sum = maxSubArraySum(a, n); | |
return 0; | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment