Leetcode--152. 乘积最大子数组(java)

给你一个整数数组 nums ,请你找出数组中乘积最大的连续子数组(该子数组中至少包含一个数字),并返回该子数组所对应的乘积。

 

示例 1:

输入: [2,3,-2,4]
输出: 6
解释: 子数组 [2,3] 有最大乘积 6。
示例 2:

输入: [-2,0,-1]
输出: 0
解释: 结果不能为 2, 因为 [-2,-1] 不是子数组。

 

思路:每次如果nums[i]是负数,交换最大最小值

imax = max(imax * nums[i], nums[i])

 

 

代码:

class Solution {

    public int maxProduct(int[] nums) {

        int max = -2147483647>>2;

        //多一个符号最大变最小,最小变最大 2 3 -2 -2 2  min:-12  max:1 max:24  minx:-12

        int tmax=1,tmin=1;

        for(int i=0;i

            if(nums[i]<0){

                int t = tmax;

                tmax = tmin;

                tmin = t;

            }

            tmax = Math.max(nums[i],tmax*nums[i]);

            tmin = Math.min(nums[i],tmin*nums[i]);

            max = Math.max(max,tmax);

        }

        return max;

    }

}

你可能感兴趣的:(Leetcode)