golang 算法题 : 二维数组搜索值

Posted w3liu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了golang 算法题 : 二维数组搜索值相关的知识,希望对你有一定的参考价值。

package main

import "fmt"

func main() {
matrix := [][]int{
{1, 4, 7, 11, 15},
{2, 5, 8, 12, 19},
{3, 6, 9, 16, 22},
{10, 13, 14, 17, 24},
{18, 21, 23, 26, 30},
}
exist := searchMatrix(matrix, 5)
fmt.Println("exit", exist)
}

func searchMatrix(matrix [][]int, target int) bool {
if matrix == nil || len(matrix) == 0 || len(matrix[0]) == 0 {
return false
}
row := 0
col := len(matrix[0]) - 1
for col >= 0 && row <= len(matrix)-1 {
if matrix[row][col] == target {
return true
} else if matrix[row][col] > target {
col--
} else if matrix[row][col] < target {
row++
}
}
return false
}

以上是关于golang 算法题 : 二维数组搜索值的主要内容,如果未能解决你的问题,请参考以下文章

经典面试算法题:线性查找有序二维数组

如何将二维数组中的值与 GoLang 中的一维数组中的值进行比较?

经典算法题-基础-二维数组中的查找

Golang二维切片初始化

Golang-二维数组

1.二维数组的查找