与上一题类似,计算最大容量,由于“短板效应”,每次都选短的一边开始计算; 然后将从短边开始可以装入的水量累加,继续迭代; public long maxWater (int[] arr) { // write code here int l=0,r=...