码迷,mamicode.com
首页 > 编程语言 > 详细

LeetCode_152.乘积最大子数组

时间:2021-01-08 11:17:03      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:for   dmi   最大的   包含   val   最小值   输入   nbsp   code   

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

 

示例 1:

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

示例 2:

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

C#代码

public class Solution {
    //乘法遇到负数后,最大值会变成最小值。
    public int MaxProduct(int[] nums) {
        int max = int.MinValue;
        int midMax = 1;
        int midMin = 1;
        int temp;

        for (int i = 0; i < nums.Length; i++)
        {
            if (nums[i] < 0)
            {
                temp = midMax;
                midMax = midMin;
                midMin = temp;
            }

            midMax = Math.Max(midMax * nums[i], nums[i]);
            midMin = Math.Min(midMin * nums[i], nums[i]);
            max = Math.Max(midMax, max);
        }
        return max;
    }
}

LeetCode_152.乘积最大子数组

标签:for   dmi   最大的   包含   val   最小值   输入   nbsp   code   

原文地址:https://www.cnblogs.com/fuxuyang/p/14242740.html

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