码迷,mamicode.com
首页 > 其他好文 > 详细

152. Maximum Product Subarray

时间:2016-04-17 07:59:43      阅读:107      评论:0      收藏:0      [点我收藏+]

标签:

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.

Similar: 53. Maximum Subarray

198. House Robber

238. Product of Array Except Self

 

 1 public class Solution {
 2     public int maxProduct(int[] nums) {
 3         if (nums.length < 1) return 0;
 4         int max = nums[0];
 5         int maxPre = nums[0]; // the max product include current val
 6         int minPre = nums[0]; // the min product include current val
 7         for (int i = 1; i < nums.length; i++) {
 8             int tmp1 = maxPre * nums[i];
 9             int tmp2 = minPre * nums[i];
10             maxPre = Math.max(nums[i], Math.max(tmp1, tmp2));
11             minPre = Math.min(nums[i], Math.min(tmp1, tmp2));
12             max = max > maxPre ? max : maxPre;
13         }
14         return max;
15     }
16 }

 

152. Maximum Product Subarray

标签:

原文地址:http://www.cnblogs.com/joycelee/p/5400219.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!