【Golang】LeetCode 53. 最大子数组和

53. 最大子数组和

题目描述

思路

我们只需设置两个变量来分别记录答案和当前子数组可能的最大和即可解决问题。

具体来说,我们设置ans, curr = nums[0], nums[0],随后开始对nums进行遍历。

由于数组当中可能会出现负数,我们使用curr来对数组和的中间状态进行记录,当curr + nums[i] < nums[i]时,说明当前的子数组和已经比当前数值更小了,此时我们重新开始统计子数组和,令curr = nums[i]

每一次遍历时,令ans = max(ans, curr),最终得到的即是答案。

基于以上思路,我们写代码来解决问题。

Golang 题解

go 复制代码
func maxSubArray(nums []int) int {
    ans, curr, n := nums[0], nums[0], len(nums)
    for i := 1; i < n; i ++ {
        if curr + nums[i] < nums[i] {
            curr = nums[i]
        } else {
            curr += nums[i]
        }
        ans = max(ans, curr)
    }
    return ans
}

Python 题解

python 复制代码
class Solution:
    def maxSubArray(self, nums: List[int]) -> int:
        ans, curr, n = nums[0], nums[0], len(nums)
        for i in range(1, n):
            if curr + nums[i] < nums[i]:
                curr = nums[i]
            else:
                curr += nums[i]
            ans = max(ans, curr)
        return ans
相关推荐
旖旎夜光2 天前
力控面试题 01.01: 判定字符是否唯一(位运算) —— 题解
c++·学习·算法·leetcode·力控
CoderYanger2 天前
A.每日一题:835. 图像重叠
java·开发语言·程序人生·leetcode·面试·职场和发展·学习方法
圣保罗的大教堂2 天前
leetcode 3524. 求出数组的 X 值 I 中等
leetcode
Tim_102 天前
【LeetCode】338、比特位计数
c++·算法·leetcode
mmmmath_32 天前
LeetCode.028.找出字符串中第一个匹配项的
数据结构·算法·leetcode
Navigator_Z2 天前
LeetCode //C - 1255. Maximum Score Words Formed by Letters
c语言·算法·leetcode
All for pursuit.2 天前
【栈-4】739.每日温度
数据结构·c++·算法·leetcode
开开心心就好2 天前
安卓手写文字生成工具,多种纸张一直免费
网络·网络协议·tcp/ip·leetcode·智能手机·电脑·模拟退火算法
All for pursuit.2 天前
【栈-5】84.柱状图中最大的矩形
数据结构·c++·算法·leetcode
圣保罗的大教堂2 天前
leetcode 1665. 完成所有任务的最少初始能量 中等
leetcode