41. leetcode 53. Maximum Subarray

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了41. leetcode 53. Maximum Subarray相关的知识,希望对你有一定的参考价值。

53. Maximum Subarray

Find the contiguous subarray within an array (containing at least one number) which has the largest sum.

For example, given the array [-2,1,-3,4,-1,2,1,-5,4],
the contiguous subarray [4,-1,2,1] has the largest sum = 6.

思路:这个题还挺经典,在Wikipedia上有对它的详细解释,并且给出了能AC的代码。从头至尾扫描数组,设当前扫描的元素为nums[i],以max_ending_here记录结尾在元素i的连续数组的和,以max_so_far记录全程最大值,那么此时max_ending_here要么是原值加上当前值,要么是仅有当前值。

技术分享

 


以上是关于41. leetcode 53. Maximum Subarray的主要内容,如果未能解决你的问题,请参考以下文章

#Leetcode# 53. Maximum Subarray

LeetCode 53. Maximum Subarray

leetcode 53. Maximum Subarray

Leetcode 53 Maximum Subarray

Leetcode53 Maximum Subarray

LeetCode练题——53. Maximum Subarray