【題目】
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.
click to show more practice.
More practice:
If you have figured out the O(n) solution, try coding another solution using the divide and conquer approach, which is more subtle.
【分析】
求最大子序列和。這題貌似也做過拓诸,忘記了...
遍歷數(shù)組箱叁,求和,當和為負數(shù)時清零胸哥,并保存最大和。
【代碼】
class Solution:
# @param A, a list of integers
# @return an integer
def maxSubArray(self, A):
currentSum = 0
maxSum = -1000
for num in A:
if currentSum < 0:
currentSum = 0
currentSum += num
maxSum = max(maxSum, currentSum)
return maxSum