-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmaxSumSubarray.js
36 lines (30 loc) · 1.15 KB
/
maxSumSubarray.js
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
//Given an array, find a subarray with the largest sum
//For example, for the array of values [−2, 1, −3, 4, −1, 2, 1, −5, 4]
//the contiguous subarray with the largest sum is [4, −1, 2, 1], with sum 6.
const maxSubarray = (array) => {
let maxSoFar = array[0], maxEndingHere = 0;
let start = 0, end = 0, s = 0;
//Itrate through the array and kepp track of sum till the iterated index
for(let i = 0; i < array.length; i++) {
maxEndingHere = maxEndingHere + array[i];
//If sumTill the iterated index is greater than maxSoFar i.e new max is found
//set maxSoFar to maxEndingHere
if(maxEndingHere > maxSoFar) {
maxSoFar = maxEndingHere;
start = s;
end = i;
}
//If maxEndingHere is negative set it to 0 to start finding new maxSum
if(maxEndingHere < 0) {
maxEndingHere = 0;
s = i + 1;
}
}
let maxSumSubarray = [];
for(let i = start; i <= end; i++) {
maxSumSubarray.push(array[i]);
}
console.log(maxSoFar);
return maxSumSubarray;
}
console.log(maxSubarray([-2, 1, -3, 4, -1, 2, 1, -5, 4]));