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

LeetCode——盛最多水的容器

时间:2020-07-20 22:25:34      阅读:87      评论:0      收藏:0      [点我收藏+]

标签:eve   一个   class   lse   容器   http   lan   problems   leetcode   

题目地址:https://leetcode-cn.com/problems/container-with-most-water/

解题思路: 很明显这类题目不能用暴力,很容易超时;可以采用贪心的想法:最大的体积肯定要么很宽,要么很高。所以从两边开始计算,然后较小的边界舍去,边界向左或者向右移动一个,再次计算。

class Solution {
public:
    int maxArea(vector<int>& height) {
        int returnS = 0;
        int left = 0;
        int right = height.size() - 1;
        int tmp;
        while (left < right) {
            tmp = min(height[left], height[right])* (right - left);
            returnS = max(tmp, returnS);
            if (height[left] < height[right])
                left++;
            else
                right--;
        }
        return returnS;
    }
};

 

LeetCode——盛最多水的容器

标签:eve   一个   class   lse   容器   http   lan   problems   leetcode   

原文地址:https://www.cnblogs.com/cc-xiao5/p/13347266.html

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