博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Leed code 11. Container With Most Water
阅读量:5239 次
发布时间:2019-06-14

本文共 442 字,大约阅读时间需要 1 分钟。

1 public int maxArea(int[] height) { 2     int left = 0, right = height.length - 1; 3     int maxArea = 0; 4  5     while (left < right) { 6         maxArea = Math.max(maxArea, Math.min(height[left], height[right]) 7                 * (right - left)); 8         if (height[left] < height[right]) 9             left++;10         else11             right--;12     }13 14     return maxArea;15 }

 

转载于:https://www.cnblogs.com/wwjldm/p/6912423.html

你可能感兴趣的文章
熟用TableView
查看>>
Java大数——a^b + b^a
查看>>
poj 3164 最小树形图(朱刘算法)
查看>>
百度贴吧图片抓取工具
查看>>
服务器内存泄露 , 重启后恢复问题解决方案
查看>>
ajax post 传参
查看>>
2.1命令行和JSON的配置「深入浅出ASP.NET Core系列」
查看>>
android一些细节问题
查看>>
KDESVN中commit时出现containing working copy admin area is missing错误提示
查看>>
利用AOP写2PC框架(二)
查看>>
【动态规划】skiing
查看>>
java定时器的使用(Timer)
查看>>
Android实现静默安装与卸载
查看>>
ef codefirst VS里修改数据表结构后更新到数据库
查看>>
boost 同步定时器
查看>>
[ROS] Chinese MOOC || Chapter-4.4 Action
查看>>
简单的数据库操作
查看>>
解决php -v查看到版本与phpinfo()版本不一致问题
查看>>
iOS-解决iOS8及以上设置applicationIconBadgeNumber报错的问题
查看>>
亡灵序曲-The Dawn
查看>>