class Solution {
public:
int maxArea(vector<int>& height) {
auto ret = 0ul, leftPos = 0ul, rightPos = height.size() - 1;
while( leftPos < rightPos)
{
ret = std::max(ret, std::min(height[leftPos], height[rightPos]) * (rightPos - leftPos));
if (height[leftPos] < height[rightPos]) ++leftPos;
else --rightPos;
}
return ret;
}
};
Python Code:
classSolution:defmaxArea(self,heights): l, r =0,len(heights)-1 ans =0while l < r: ans =max(ans, (r - l) *min(heights[l], heights[r]))if heights[r]> heights[l]: l +=1else: r -=1return ans
复杂度分析
时间复杂度:由于左右指针移动的次数加起来正好是 n, 因此时间复杂度为 $O(N)$。
空间复杂度:$O(1)$。
更多题解可以访问我的 LeetCode 题解仓库:https://github.com/azl397985856/leetcode 。 目前已经 37K star 啦。