Given an array, the algorithm to find the maximum subarray sum is called Kadane’s Algorithm.

2

The array can be of any dimension. For simplicity, let’s start with a 1D array.

Let’s take a 0-indexed array:

arr: [5, 7, -3, 2, 9, 6, 16, 22, 21, 29, -14, 10, 12]

We can start the subarray at any point. Let’s say we start at index 2 i.e., arr[2] = -3.

Now, at index 3, the sum will be -3 + 2 = -1.

If we started the subarray at index 3 instead, the sum at index 3 is 2, which is greater than the previous sum.

So we have two choices: either start at the current index or add the current element to the previous sum.

And since we want the maximum subarray sum, we add the current element to the maximum of 0 and previous sum (zero here denotes that we’re starting anew from the current element).

This Problem Falls Under the Dynamic Programming Paradigm

Let’s take an array dp[] where each dp[i] denotes maximum subarray sum ending at index i (including i).

#algorithms #mathematics #math #learning #indexes

Kadane’s Algorithm Explained with Examples
1.50 GEEK