11. 盛最多水的容器

Posted yuhong1103

tags:

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

 1 //双指针算法
 2 class Solution 
 3 {
 4 public:
 5     int maxArea(vector<int>& height) 
 6     {
 7         int n = height.size();
 8         int Area = 0;
 9         int l = 0,r = n - 1;
10         while(l < r)
11         {
12             Area = max(Area,(r - l)*min(height[l],height[r]));
13             if(height[l] < height[r]) l++;//木板原理,谁小谁移动
14             else r--;
15         }
16         return Area;
17     }
18 };

 

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

11. 盛最多水的容器

11. 盛最多水的容器

11. 盛最多水的容器

11. 盛最多水的容器

11. 盛最多水的容器

LeetCode 11. 盛最多水的容器