-
Notifications
You must be signed in to change notification settings - Fork 2.1k
/
Kadane_Algorithm.cpp
56 lines (42 loc) · 1.76 KB
/
Kadane_Algorithm.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
/* C++ implementation of Kadane's Algorithm to find the Maximum Subarray Sum
including the extra phase required when all the numbers in array are negative */
#include <iostream>
using namespace std;
int kadane(int input[], int n) // Function implementing Kadane's Algorithm (array contains at least one positive number)
{
int current_max = 0, max_so_far = 0;
for(int i = 0; i < n; i++)
{
current_max = max(0, current_max + input[i]);
max_so_far = max(max_so_far, current_max);
}
return max_so_far; // Maximum subarray sum
}
int main()
{
int max_subarray_sum;
int input[] = {-2, 1, -6, 4, -1, 2, 1, -5, 4}; // Input array
int n = sizeof(input) / sizeof(input[0]); // Size of array
int flag = 0; // Flag variable to check if all the numbers in array are negative or not
int largest_in_negative = input[0]; // Smallest_negative variable will store the maximum subarray sum if all the numbers are negative in array
for(int i = 0; i < n; i++) // Scanning each element in array
{
if(input[i] >= 0) // If any element is positive, kadane's algo can be applied
{
flag = 1;
break;
}
else if(input[i] > largest_in_negative) // If all the elements are negative, find the largest in them
largest_in_negative = input[i];
}
if(flag == 1) // Kadane's algo applicable
max_subarray_sum = kadane(input, n);
else
max_subarray_sum = largest_in_negative; // Kadane 's algo not applicable,
// hence the max_subarray_sum will be the largest number in array itself
cout << "Maximum Subarray Sum is " << max_subarray_sum << endl;
return 0;
}
/* Output
Maximum Subarray Sum is 6
*/