/** * 11 盛最多水的容器 */ public class MaxArea { public int maxArea(int[] height) { int left=0, right=height.length-1; int res = 0; while(left