dev-resources.site
for different kinds of informations.
Kadane's Algorithm: Leetcode 53 Maximum subarray
Published at
1/10/2025
Categories
java
algorithms
leetcode
datastructures
Author
Dev Nirwal
Intuition
We can build the intuition based on the two-point approach.
Approach
We will start with two variables maxSum
and maxTillNow
.
The first variable stores the max sum we have attained overall in the array.
The second variable stores the value of the maximum sum attained till the current index. Since the array has a negative value, this value will fluctuate, but whenever we get
maxSum < maxTillNow
, we update themaxSum
.The final case we have to handle will be if the maximum sum till any index reaches zero, i.e.,
maxTillNow < 0
, reset themaxTillNow = 0
at the end of loop.
Complexity
-
Time complexity: O(N)
-
Space complexity: O(1)
Code
class Solution {
public int maxSubArray(int[] nums) {
int maxSum = Integer.MIN_VALUE;
int maxTillNow = 0;
for(int i =0;i<nums.length;i++){
maxTillNow+=nums[i];
maxSum = Math.max(maxTillNow,maxSum);
if(maxTillNow<0) maxTillNow = 0;
}
return maxSum;
}
}
GitHub repo for more solutions: Git
Leetcode profile: Leetcode: devn007
Articles
9 articles in total
Leetcode 75. Sort Colors
read article
Kadane's Algorithm: Leetcode 53 Maximum subarray
currently reading
Leetcode: 73 Set Matrix Zeroes
read article
Leetcode Solution - Github automation
read article
SMS Bomber App - Flutter
read article
Hacktoberfest - 2021
read article
Quoted Image App
read article
Shorti - Opensource URL Shortener
read article
Prank Sms Bomber
read article
Featured ones: