-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontainerwithmostwater.cpp
More file actions
40 lines (40 loc) · 1001 Bytes
/
containerwithmostwater.cpp
File metadata and controls
40 lines (40 loc) · 1001 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
class Solution {
public:
int maxArea(vector<int> &height) {
if (height.size() < 2)
{
return 0;
}
int len = height.size();
int low = 0;
int high = len - 1;
int ret = 0;
while (low < high)
{
ret = max(ret, min(height[low], height[high])*(high - low));
if (height[low] > height[high])
{
while (high > low)
{
high--;
if (height[high] > height[high+1])
{
break;
}
}
}
else
{
while (high > low)
{
low++;
if (height[low] > height[low-1])
{
break;
}
}
}
}
return ret;
}
};