标签:io ar os java sp for on 代码 amp
Find the contiguous subarray within an array (containing at least one number) which has the largest product.
For example, given the array [2,3,-2,4],
the contiguous subarray [2,3] has the largest product = 6.
其实不管是最大连续自序列和还是乘积,关键的一个概念是定义一个变量叫做 “包含当前值的最大连续序列值(和/乘积)”,举例来说curMax
这个值的存在使得包含下一个位置的最大连续序列值的求解成为可能,以最大连续自序列求和为例,
curMax(x+1) = max(A[x+1], curMax(x) + A[X])
对于最大连续自序列乘积,需要纪录两个,一个是包含当前值的最大连续子序列乘积, 一个是包含当前值的最小自序列乘积
curMax(x + 1) = Math.max(curMax(x)A[x], curMin(x)A[x], A[x])
curMin(x + 1) = Math.min(curMax(x)A[x], curMin(x)A[x], A[x])
因为包含当前值的最大值(最小值)只能由这三种可能构成
最大连续自序列和
public class Solution { public int maxSubArray(int[] A) { int curMax = A[0]; int max = A[0]; for (int i = 1; i < A.length ; i++) { curMax = Math.max(A[i], curMax + A[i]); max = Math.max(max, curMax); } return max; } }
最大连续子序列乘积
public class MaxProductSubArray { public int maxProduct(int[] A) { int curMax = A[0]; int curMin = A[0]; int max = A[0]; for(int i = 1; i < A.length; i++) { // 注意这里先存起来,下面要在更新之后再用一次 int temp = curMax * A[i]; curMax = Math.max(A[i], Math.max(curMax * A[i], curMin * A[i])); curMin = Math.min(A[i], Math.min(temp, curMin * A[i])); max = Math.max(curMax, max); } return max; } }
标签:io ar os java sp for on 代码 amp
原文地址:http://my.oschina.net/zuoyc/blog/342183