leetcode刷题笔记(Golang)--11. Container With Most Water

煮酒_zzh · · 4377 次点击 · · 开始浏览    
这是一个创建于 的文章,其中的信息可能已经有所发展或是发生改变。

原题链接11. Container With Most Water
Given n non-negative integers a1, a2, ..., an , where each represents a point at coordinate (i, ai). n vertical lines are drawn such that the two endpoints of line i is at (i, ai) and (i, 0). Find two lines, which together with x-axis forms a container, such that the container contains the most water.

**Note: **You may not slant the container and n is at least 2.

image

Example:
Input: [1,8,6,2,5,4,8,3,7]
Output: 49
解题思路:双指针

func maxArea(height []int) int {
    res := 0
    l := 0
    r := len(height) - 1
    for l < r {
        h := height[l]
        if height[l] > height[r] {
            h = height[r]
        }
        if res < h*(r-l) {
            res = h * (r - l)
        }

        if height[l] < height[r] {
            l++
        } else {
            r--
        }
    }
    return res
}

有疑问加站长微信联系(非本文作者)

本文来自:简书

感谢作者:煮酒_zzh

查看原文:leetcode刷题笔记(Golang)--11. Container With Most Water

入群交流(和以上内容无关):加入Go大咖交流群,或添加微信:liuxiaoyan-s 备注:入群;或加QQ群:692541889

4377 次点击  
加入收藏 微博
暂无回复
添加一条新回复 (您需要 登录 后才能回复 没有账号 ?)
  • 请尽量让自己的回复能够对别人有帮助
  • 支持 Markdown 格式, **粗体**、~~删除线~~、`单行代码`
  • 支持 @ 本站用户;支持表情(输入 : 提示),见 Emoji cheat sheet
  • 图片支持拖拽、截图粘贴等方式上传