type pair struct{
x, y int
}
func minAreaRect(points [][]int)int{
mp := map[pair]struct{}{}
// 将二维数组中的坐标映射到map中
for i := range points{
mp[pair{points[i][0], points[i][1]}] = struct{}{}
}
// 将结果设置为一个最大值,防止影响求最小值的逻辑
res := math.MaxInt64
for i := range points{
for j := i + 1; j < len(points); j++{
if points[i][0] == points[j][0] || points[i][1] == points[j][1]{
continue
}
_, a := mp[pair{points[i][0], points[j][1]}]
_, b := mp[pair{points[j][0], points[j][1]}]
if a && b {
area := getArea(points[i], points[j])
if area < res{
res = area
}
}
}
}
if res == math.MaxInt64{
return 0
}
return res
}
func getArea(p1, p2 []int) int{
x := p1[0] - p2[0]
if x < 0 {
x *= -1
}
y := p1[1] - p2[1]
if y < 0{
y *= -1
}
return x * y
}
将结果设置为一个最大值,防止影响求最小值的逻辑
res := math.MaxInt64
将二维数组中的坐标映射到map中
for i := range points{
mp[pair{points[i][0], points[i][1]}] = struct{}{}
}