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

11. 盛最多水的容器

时间:2020-03-15 18:43:32      阅读:49      评论:0      收藏:0      [点我收藏+]

标签:solution   nbsp   tor   vector   public   容器   else   turn   code   

 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. 盛最多水的容器

标签:solution   nbsp   tor   vector   public   容器   else   turn   code   

原文地址:https://www.cnblogs.com/yuhong1103/p/12499111.html

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