摘要: 简介 接雨水. 简单思路 排序, 依次选择最高的柱子,所围城的池塘高度 code class Solution { public: struct zhuzi{ int height; int index; }; bool static cmp(const struct zhuzi &a, const 阅读全文
posted @ 2021-05-15 21:59 HDU李少帅 阅读(30) 评论(0) 推荐(0) 编辑
摘要: 简介 其实还是蛮常识的一道题, 不过, 说实话,容易超时. 思路 固定第一个值,然后使用左右指针, 进行滑动. 参考链接 https://leetcode-cn.com/problems/3sum/solution/yi-miao-jiu-neng-kan-dong-de-dong-tu-jie-u 阅读全文
posted @ 2021-05-15 20:04 HDU李少帅 阅读(36) 评论(0) 推荐(0) 编辑