接雨水-入参为ArrayList<Integer>类型
Posted 王六六同学
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了接雨水-入参为ArrayList<Integer>类型相关的知识,希望对你有一定的参考价值。
/**
* @author WanZi
* @create 2022-10-13 18:17
*/
public class Main03
public int Trap (ArrayList<Integer> height)
// write code here
int res = 0;
for(int i=0;i<height.size();i++)
if(i == 0 || i == height.size() - 1)
continue;
int l = height.get(i);
int r = height.get(i);
for(int rr = i+1;rr<height.size();rr++)
if(height.get(rr)>r)
r = height.get(rr);
for(int ll = i-1;ll>=0;ll--)
if(height.get(ll)>l)
l = height.get(ll);
int h = Math.min(l,r) - height.get(i);
if(h > 0)
res += h;
return res;
以上是关于接雨水-入参为ArrayList<Integer>类型的主要内容,如果未能解决你的问题,请参考以下文章
课时5 入参为HashMap,以及mybatis调用存储过程CRUD
Python+requests库发送接口入参为xml格式的接口请求多测师
Python+requests库发送接口入参为xml格式的接口请求多测师
一个ArrayList在循环过程中删除,会不会出问题,为什么?
RobotFramework:发现一个大坑,当post接口入参为json时,千万不能用sojson转化后的json串,直接用浏览器粘过来的就行