2 Star 10 Fork 2

CG国斌 / myleetcode

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
_53.py 827 Bytes
一键复制 编辑 原始数据 按行查看 历史
Charies Gavin 提交于 2020-02-06 12:44 . 初始化 myleetcode 项目
"""
53. Maximum Subarray
Given an integer array nums, find the contiguous subarray (containing at least one number) which has the largest sum and return its sum.
Example:
Input: [-2,1,-3,4,-1,2,1,-5,4],
Output: 6
Explanation: [4,-1,2,1] has the largest sum = 6.
Follow up:
If you have figured out the O(n) solution, try coding another solution using the divide and conquer approach, which is more subtle.
"""
def maxSubArray(self, nums):
"""
:type nums: List[int]
:rtype: int
"""
numsLen = len(nums)
dp = [nums[0]]
maxSubSum = nums[0]
i = 1
while i < numsLen:
if dp[i - 1] > 0:
temp = dp[i - 1]
else:
temp = 0
dp.append(nums[i] + temp)
if maxSubSum < dp[i]:
maxSubSum = dp[i]
i += 1
return maxSubSum
Java
1
https://gitee.com/guobinhit/myleetcode.git
git@gitee.com:guobinhit/myleetcode.git
guobinhit
myleetcode
myleetcode
master

搜索帮助