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

LeetCode Container With Most Water

时间:2014-05-08 10:23:54      阅读:287      评论:0      收藏:0      [点我收藏+]

标签:style   blog   class   code   java   color   

bubuko.com,布布扣
class Solution{
    public:
        int maxArea(vector<int>& height) {  
        int len = height.size(), low = 0, high = len -1 ;  
        int maxArea = 0;  
        while (low < high) {  
            maxArea = max(maxArea, (high - low) * min(height[low], height[high]));  
            if (height[low] < height[high]) {  
                low++;  
            } else {  
                high--;  
            }  
        }  
        return maxArea;  
    }
};
bubuko.com,布布扣

应该算是贪婪算法吧,直接从disscus里抄了,自己只能想出一个nlogn的,对贪婪没什么感觉,想不到

LeetCode Container With Most Water,布布扣,bubuko.com

LeetCode Container With Most Water

标签:style   blog   class   code   java   color   

原文地址:http://www.cnblogs.com/lailailai/p/3715508.html

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