会员
周边
捐助
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
复制代码
pg633
人生的不同取决于你的选择,只要还有选择的权力,你的人生必定不同
博客园
新随笔
联系
管理
2018年5月21日
leetcode 刷题录
摘要: 11. 盛最多水的容器 class Solution { public: int maxArea(vector<int>& height) { vector<int> & v =height; int l =0,r=v.size()-1; int res = 0; while(l<r) { int
阅读全文
posted @ 2018-05-21 23:38 pg633
阅读(132)
评论(0)
推荐(0)
编辑