• Courses
  • Tutorials
  • Jobs
  • Practice
  • Contests
June 10, 2022 |2.2K Views
Largest Sum Contiguous Subarray
  Share   Like
Description
Discussion

The simple idea of Kadane’s algorithm is to look for all positive contiguous segments of the array (max_ending_here is used for this). And keep track of maximum sum contiguous segment among all positive segments (max_so_far is used for this). Each time we get a positive sum compare it with max_so_far and update max_so_far if it is greater than max_so_far Largest Sum Contiguous Subarray : https://www.geeksforgeeks.org/largest-sum-contiguous-subarray/