11. 盛最多水的容器(LeetCode记录)
Posted 唐 昊
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了11. 盛最多水的容器(LeetCode记录)相关的知识,希望对你有一定的参考价值。
public int maxArea(int[] a)
int max = 0;
for(int i = 0, j = a.length - 1; i < j ;)
int minHeight = a[i] < a[j] ? a[i ++] : a[j --];
max = Math.max(max, (j - i + 1) * minHeight);
return max;
以上是关于11. 盛最多水的容器(LeetCode记录)的主要内容,如果未能解决你的问题,请参考以下文章
算法leetcode|11. 盛最多水的容器(rust重拳出击)