码迷,mamicode.com
首页 > 其他好文 > 详细

Container With Most Water

时间:2014-12-30 09:11:34      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:

Two pointer, 一头一尾;

brute force的话需要时间复杂度为O(n^2);

但是two pointer的方法可以进行简化(通过对某些case的省略):

  具体:

  height[low] < height[high]:

    则知道 height[low]与任意height[low+1] ... height[high-1]中的一个组成的饿containter都不会产生更大的area;

    于是low++

  height[low] >= height[high]:

    则知道 height[high]与任意height[low+1] ... height[high-1]中的一个组成的饿containter都不会产生更大的area;

    于是high++

同时keep updating maxArea    

Container With Most Water

标签:

原文地址:http://www.cnblogs.com/jinagyuanhk/p/4192805.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!