摘要: 42.接雨水:https://leetcode-cn.com/problems/trapping-rain-water/ 点击查看代码 public class Solution { public int trap(int[] height) { int size = height.length; 阅读全文