structSolution;implSolution{pubfntrap(height:Vec<i32>)->i32{let(mutl,mutl_max,mutr,mutr_max)=(0,height[0],height.len()-1,height[height.len()-1]);letmutans=0;whilel<r{// 维护l_max 和 r_maxl_max=l_max.max(height[l]);r_max=r_max.max(height[r]);// 依据短板效应 计算接到的雨水量ifheight[l]<height[r]{ans+=l_max-height[l];l+=1;}else{ans+=r_max-height[r];r-=1;}}ans}}/// # Trapping Rain Water#[cfg(test)]pubmodtest_42{usecrate::hot100::two_pointers::p42::Solution;#[test]fntest_p42(){// You can use `assert_eq!(target,Solution::function(args))` to call the functionassert_eq!(6,Solution::trap(vec![0,1,0,2,1,0,1,3,2,1,2,1]));}}