三数之和
给定一个长度为 n 的整数数组 height 。有 n 条垂线,第 i 条线的两个端点是 (i, 0) 和 (i, height[i]) 。
找出其中的两条线,使得它们与 x 轴共同构成的容器可以容纳最多的水。
返回容器可以储存的最大水量。
说明:你不能倾斜容器。
双指针解法(从两端向中间遍历)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
| var maxArea = function (height) { let LIndex = 0 let RIndex = height.length - 1 let area = Math.min(height[LIndex], height[RIndex]) * RIndex
while (LIndex < RIndex) { if (height[LIndex] > height[RIndex]) { RIndex-- const tempArea = Math.min(height[LIndex], height[RIndex]) * (RIndex - LIndex) area = Math.max(tempArea, area) } else { LIndex++ const tempArea = Math.min(height[LIndex], height[RIndex]) * (RIndex - LIndex) area = Math.max(tempArea, area) } } return area };
|