输入一个整型数组,数组中的一个或连续多个整数组成一个子数组。求所有子数组的和的最大值。
要求时间复杂度为O(n)。
示例1:
输入: nums = [-2,1,-3,4,-1,2,1,-5,4]
输出: 6
解释: 连续子数组 [4,-1,2,1] 的和最大,为 6。
提示:
- 1 <= arr.length <= 10^5
- -100 <= arr[i] <= 100
Python 解答:
class Solution:
def maxSubArray(self, nums: List[int]) -> int:
i = 0
total = 0
max_value = nums[0]
while i < len(nums):
total += nums[i]
if total > max_value:
max_value = total
if total < 0:
total = 0
i += 1
return max_value
留言