找出一個序列中乘積最大的連續(xù)子序列(至少包含一個數(shù))主卫。
樣例
比如, 序列 [2,3,-2,4] 中乘積最大的子序列為 [2,3] 检痰,其乘積為6。
public class Solution {
/**
* @param nums: an array of integers
* @return: an integer
*/
public int maxProduct(int[] nums) {
if(null == nums || nums.length <= 0)
{
return 0;
}
int max = nums[0];
int min = nums[0];
int mostMax = max;
for(int i = 1;i < nums.length;i++)
{
int tempMax = max;
max = Math.max(Math.max(nums[i], tempMax * nums[i]),min * nums[i]);
min = Math.min(Math.min(nums[i], tempMax * nums[i]),min * nums[i]);
if(max > mostMax)
{
mostMax = max;
}
}
return mostMax;
}
}