Created
January 26, 2017 14:38
-
-
Save zjplab/5671fa299c3b4a39bfd3b66ccd2e45be to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| Kadane’s Algorithm: | |
| Initialize: | |
| max_so_far = 0 | |
| max_ending_here = 0 | |
| Loop for each element of the array | |
| (a) max_ending_here = max_ending_here + a[i] | |
| (b) if(max_ending_here < 0) | |
| max_ending_here = 0 | |
| (c) if(max_so_far < max_ending_here) | |
| max_so_far = max_ending_here | |
| return max_so_far | |
| // C++ program to print largest contiguous array sum | |
| #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; | |
| } | |
| /*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); | |
| cout << "Maximum contiguous sum is " << max_sum; | |
| return 0; | |
| } |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I think wikipedia has a good explanation for what's that-----------it's a actually a classic algorithm for so-called maximum subarray problem.
See it here