标签:最大子数组 最大子数组和 col [] for find sub 规划 greatest
使用动态规划
public int FindGreatestSumOfSubArray(int[] array) { int res = array[0]; //记录当前所有子数组的和的最大值 int max=array[0]; //包含array[i]的连续数组最大值 for (int i = 1; i < array.length; i++) { max=Math.max(max+array[i], array[i]); res=Math.max(max, res); } return res; }
标签:最大子数组 最大子数组和 col [] for find sub 规划 greatest
原文地址:https://www.cnblogs.com/inception6-lxc/p/9062872.html