摘要: 贪心 遍历数组,记录之前和, 比较 当前元素 和 [当前元素+之前和],取当中最大值作为当前和,然后更新最大和: max = Math.max(max, 当前和); public int maxSubArray(int[] nums) { int result = nums[0]; int sum 阅读全文
posted @ 2022-04-10 00:11 OraCat 阅读(1) 评论(0) 推荐(0) 编辑