1 Star 0 Fork 0

wangzai/力扣算法面试题

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
11. Container With Most Water.cpp 430 Bytes
一键复制 编辑 原始数据 按行查看 历史
wangzai 提交于 2021-10-26 19:35 . 增加了11. 盛最多水的容器
//
// Created by 旺崽 on 2021/10/26.
//
#include "bits/stdc++.h"
using namespace std;
class Solution {
public:
int maxArea(vector<int> &height) {
int l = 0, r = height.size() - 1, ans = 0;
while (l <= r) {
ans = max(ans, min(height[l], height[r]) * (r - l));
if (height[l] > height[r]) r--;
else l++;
}
return ans;
}
};
int main() {
return 0;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/qianlinyi/algorithmicQuestions.git
git@gitee.com:qianlinyi/algorithmicQuestions.git
qianlinyi
algorithmicQuestions
力扣算法面试题
master

搜索帮助