Leetcode总结帖【11-20】
摘要:
11. Container with Most Water 使用双指针i和j,分别指向数组的两端。每次最大值是res = max(res, (j - i) * min(height[j], height[i]))。每次根据比较height[i]和height[j]的大小来更新i和j。 只有下一个he 阅读全文
posted @ 2020-01-30 22:31 jadvpetc 阅读(158) 评论(0) 推荐(0) 编辑