面试题 16.17:连续数列

This commit is contained in:
轩辕龙儿 2022-03-29 23:48:34 +08:00
parent cfe2c8621c
commit d027b1944d
2 changed files with 57 additions and 0 deletions

View File

@ -0,0 +1,44 @@
//给定一个整数数组找出总和最大的连续数列并返回总和
//
// 示例
//
// 输入 [-2,1,-3,4,-1,2,1,-5,4]
//输出 6
//解释 连续子数组 [4,-1,2,1] 的和最大 6
//
//
// 进阶
//
// 如果你已经实现复杂度为 O(n) 的解法尝试使用更为精妙的分治法求解
// Related Topics 数组 分治 动态规划 👍 109 👎 0
package leetcode.editor.cn;
//面试题 16.17:连续数列
public class ContiguousSequenceLcci {
public static void main(String[] args) {
Solution solution = new ContiguousSequenceLcci().new Solution();
}
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {
public int maxSubArray(int[] nums) {
int b = nums[0];
int sum = b;
for (int i = 1; i < nums.length; i++) {
if (b < 0) {
b = nums[i];
} else {
b += nums[i];
}
if (b > sum) {
sum = b;
}
}
return sum;
}
}
//leetcode submit region end(Prohibit modification and deletion)
}

View File

@ -0,0 +1,13 @@
<p>给定一个整数数组,找出总和最大的连续数列,并返回总和。</p>
<p><strong>示例:</strong></p>
<pre><strong>输入:</strong> [-2,1,-3,4,-1,2,1,-5,4]
<strong>输出:</strong> 6
<strong>解释:</strong> 连续子数组 [4,-1,2,1] 的和最大,为 6。
</pre>
<p><strong>进阶:</strong></p>
<p>如果你已经实现复杂度为 O(<em>n</em>) 的解法,尝试使用更为精妙的分治法求解。</p>
<div><div>Related Topics</div><div><li>数组</li><li>分治</li><li>动态规划</li></div></div><br><div><li>👍 109</li><li>👎 0</li></div>