盛最多水的容器

Posted dolisun

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了盛最多水的容器相关的知识,希望对你有一定的参考价值。

思路:用两个指针,因为指针往里面缩小,容器的宽度会减少,因此需要通过增加高度来抵消宽度的减少,因此移动高度短的指针期望寻找到更高的来替代,要不然面积会越来越小

class Solution(object):
    def maxArea(self, height):
        """
        :type height: List[int]
        :rtype: int
        """
        left = 0
        right = len(height)-1
        max_area = 0
        while left<right:
            max_area = max(max_area, min(height[left], height[right])*(right-left))
            if height[left] < height[right]:
                left += 1
            else:
                right -= 1
        return max_area
        

以上是关于盛最多水的容器的主要内容,如果未能解决你的问题,请参考以下文章

11. 盛最多水的容器

LeetCode-011-盛最多水的容器

11. 盛最多水的容器

盛最多水的容器

LeetCode:盛最多水的容器11

Leetcode 盛最多水的容器