42. 接雨水(高频题)


42. 接雨水

题目

给定 n 个非负整数表示每个宽度为 1 的柱子的高度图,计算按此排列的柱子,下雨之后能接多少雨水。

在这里插入图片描述
提示:

  • n == height.length
  • 0 <= n <= 3 * 104
  • 0 <= height[i] <= 105

解题思路

主要明白,能装多少水是取决于左右两边最高的柱子中那根比较低的柱子。
详细思路见书368

代码

class Solution {
    public int trap(int[] height) {
        if(height==null||height.length==0){
            return 0;
        }
        int n=height.length;
        int left=0; int right=n-1;
        int res=0;

        int l_max=height[0];
        int r_max=height[n-1];

        while(left<=right){
            //保持l_max是左指针经过的地方的最高的柱子
            l_max=Math.max(l_max,height[left]);
            r_max=Math.max(r_max,height[right]);

            if(l_max<r_max){
                res=res+(l_max-height[left]);
                left++;
            }else{
                res=res+(r_max-height[right]);
                right--;
            }
        }
        return res;
    }
}

文章作者: fFee-ops
版权声明: 本博客所有文章除特別声明外,均采用 CC BY 4.0 许可协议。转载请注明来源 fFee-ops !
评论
  目录