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

leetcode11

时间:2018-10-04 22:02:46      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:col   max   div   solution   leetcode   lse   --   ==   turn   

public class Solution
    {
        //public int MaxArea(int[] height)
        //{
        //    var max = 0;
        //    for (int i = 0; i < height.Length; i++)
        //    {
        //        for (int j = 0; j < height.Length; j++)
        //        {
        //            if (i == j)
        //            {
        //                continue;
        //            }
        //            var min = Math.Min(height[i], height[j]);
        //            var dif = Math.Abs(i - j);
        //            var product = min * dif;
        //            max = Math.Max(max, product);
        //        }
        //    }
        //    return max;
        //}
        public int MaxArea(int[] height)
        {
            int max = int.MinValue;
            for (int i = 0, j = height.Length - 1; i < j;)
            {
                if (height[i] > height[j])
                {
                    max = Math.Max(max, height[j] * (j - i));
                    j--;
                }
                else
                {
                    max = Math.Max(max, height[i] * (j - i));
                    i++;
                }
            }
            return max;            
        }
    }

 

leetcode11

标签:col   max   div   solution   leetcode   lse   --   ==   turn   

原文地址:https://www.cnblogs.com/asenyang/p/9743529.html

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