0011._Container_With_Most_Water
11. Container With Most Water
难度: Medium
刷题内容
原题连接
内容描述
1  | Given n non-negative integers a1, a2, ..., an , where each represents a point at coordinate (i, ai). n vertical lines are drawn such that the two endpoints of line i is at (i, ai) and (i, 0). Find two lines, which together with x-axis forms a container, such that the container contains the most water.  | 

1  | The above vertical lines are represented by array [1,8,6,2,5,4,8,3,7]. In this case, the max area of water (blue section) the container can contain is 49.  | 
1  | Example:  | 
解题方案
对撞指针
**- 时间复杂度: O(N)**- 空间复杂度: O(1)**
- 从数组两层对向查找,直到找到最大乘积
 
代码:
1  | var maxArea = function (list) {  | 
暴力解法
**- 时间复杂度: O(N²)**- 空间复杂度: O(1)**
代码
1  | var maxArea = function (list) {  |