栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Java

42. 接雨水 (Java)Leecode

Java 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

42. 接雨水 (Java)Leecode


解题思路:

利用双指针,左右指针同时移动,代表左右最高的柱子。
每次能装的水要与最低的水位l_max或r_max比较即可。

class Solution {
    public int trap(int[] height) {
    

        int left = 0, right = height.length - 1;
        int l_max = 0, r_max = 0;

        int res = 0;

        while(left < right){
            l_max = Math.max(l_max, height[left]); //最高的柱子
            r_max = Math.max(r_max, height[right]);

            if(l_max < r_max){ //最低的水位l_max或r_max
                res += l_max - height[left];
                left++;

            }else{
                res += r_max - height[right];
                right--;
            }

        }
        return res;
    }
    
}


转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/762785.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号