11. 盛水最多的容器

题目来源:

        leetcode题目,网址:11. 盛最多水的容器 - 力扣(LeetCode)

解题思路:

        双指针。左指针指向起始长度,右指针指向末尾长度,res 为当前最大值。更新res 长度后,将两指针中长度较小的往中间移动一个单位。重复此操作直至两指针相遇。

解题代码:

class Solution {
public:
    int maxArea(vector& height) {
        int res=0;
        int left=0;
        int right=height.size()-1;
        while(left
 
  

总结:

        没想出来,看官方题解的。


你可能感兴趣的:(#,二刷,LeetCode,C++)