【LeetCode/LintCode】阿里巴巴面试高频题:最大子数组
2021-03-27 03:25
标签:表示 复杂度 变量 min 九章算法 分析 node 放弃 div 给定一个整数数组,找到一个具有最大和的子数组,返回其最大和。 样例1: 样例2: 在线评测地址: LintCode 领扣? 贪心 算法分析 算法步骤 因为数组可以全为负数,因此maxAns不能直接初始化为0; 复杂度 更多题解参考:九章算法官网 【LeetCode/LintCode】阿里巴巴面试高频题:最大子数组 标签:表示 复杂度 变量 min 九章算法 分析 node 放弃 div 原文地址:https://www.cnblogs.com/lintcode/p/13674564.html输入:[−2,2,−3,4,−1,2,1,−5,3]
输出:6
解释:符合要求的子数组为[4,−1,2,1],其最大和为 6。
输入:[1,2,3,4]
输出:10
解释:符合要求的子数组为[1,2,3,4],其最大和为 10。
算法
public class Solution {
/**
* @param nums: A list of integers
* @return: A integer indicate the sum of max subarray
*/
public int maxSubArray(int[] nums) {
// maxAns记录全局最大值 sum记录当前子数组的和
int maxAns = Integer.MIN_VALUE, sum = 0;
// 贪心
for (int i = 0; i
下一篇:Java面试考点
文章标题:【LeetCode/LintCode】阿里巴巴面试高频题:最大子数组
文章链接:http://soscw.com/index.php/essay/68396.html