class Solution {public: int maxArea(vector & height) { /* 逼近法 两端进行逼近 每次舍弃短边,因为不存在短边为边的另一个矩形比当前矩形要大【宽变小,高最多为短边】 */ #includeusing namespace std; int ans=0; int l=0,r=height.size()-1; while(l
本文共 344 字,大约阅读时间需要 1 分钟。
class Solution {public: int maxArea(vector & height) { /* 逼近法 两端进行逼近 每次舍弃短边,因为不存在短边为边的另一个矩形比当前矩形要大【宽变小,高最多为短边】 */ #includeusing namespace std; int ans=0; int l=0,r=height.size()-1; while(l
转载于:https://www.cnblogs.com/ximelon/p/10773746.html