【golang】算法 -- 最大容积

参考 https://leetcode-cn.com/problems/container-with-most-water/
【golang】算法 -- 最大容积_第1张图片

package main

import "fmt"

var (
	max int
	l   int
	r   int
)

func main() {
	max = 0
	l = 0
	height := [9]int{1, 8, 6, 2, 5, 4, 8, 3, 7}
	r = len(height) - 1

	// 从两端开始
	for l < r {

		temp := 0
		if height[l] > height[r] {
			temp = height[r] * (r - l)
		} else {
			temp = height[l] * (r - l)
		}
		if temp > max {
			max = temp
		}

		// 容积,有短板决定,所以不断查找更长的板
		if height[l] > height[r] {
			r--
		} else {
			l++
		}
	}

	fmt.Println("max area : ", max)
}

你可能感兴趣的:(golang,数据结构,算法,golang)