forked from TheAlgorithms/JavaScript
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathKadaneAlgo.js
More file actions
Latest commit
25 lines (24 loc) · 942 Bytes
/
Copy pathKadaneAlgo.js
File metadata and controls
25 lines (24 loc) · 942 Bytes
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
/* Kadane's algorithm is one of the most efficient ways to
* calculate the maximum contiguous subarray sum for a given array.
* Below is the implementation of Kadane's algorithm along with
* some sample test cases.
* There might be a special case in this problem if al the elements
* of the given array are negative. In such a case, the maximum negative
* value present in the array is the answer.
*
* Reference article :- https://www.geeksforgeeks.org/largest-sum-contiguous-subarray/
*/
exportfunctionkadaneAlgo(array){
letcumulativeSum=0
letmaxSum=Number.NEGATIVE_INFINITY// maxSum has the least possible value
for(leti=0;i<array.length;i++){
cumulativeSum=cumulativeSum+array[i]
if(maxSum<cumulativeSum){
maxSum=cumulativeSum
}elseif(cumulativeSum<0){
cumulativeSum=0
}
}
returnmaxSum
// This function returns largest sum contiguous sum in a array
}