404

在不遍历整个数组的情况下,如何x使用 Go 检查是否在数组中?语言有结构吗?

像 Python 一样:if "x" in array: ...

4

7 回答 7

472

Go 中没有内置的运算符来执行此操作。您需要遍历数组。您可以编写自己的函数来执行此操作,如下所示:

func stringInSlice(a string, list []string) bool {
    for _, b := range list {
        if b == a {
            return true
        }
    }
    return false
}

如果您希望能够在不遍历整个列表的情况下检查成员资格,则需要使用映射而不是数组或切片,如下所示:

visitedURL := map[string]bool {
    "http://www.google.com": true,
    "https://paypal.com": true,
}
if visitedURL[thisSite] {
    fmt.Println("Already been here.")
}
于 2013-03-10T15:36:14.113 回答
138

如果列表包含静态值,则另一种解决方案。

例如:从有效值列表中检查有效值:

func IsValidCategory(category string) bool {
    switch category {
    case
        "auto",
        "news",
        "sport",
        "music":
        return true
    }
    return false
}
于 2015-11-25T23:45:39.223 回答
54

这是从“Go 编程:为 21 世纪创建应用程序”一书中引述的:

像这样使用简单的线性搜索是未排序数据的唯一选择,适用于小切片(最多数百个项目)。但是对于较大的切片——特别是如果我们重复执行搜索——线性搜索效率非常低,平均每次需要比较一半的项目。

Go 提供了一个 sort.Search() 方法,该方法使用二分搜索算法:这需要每次只比较 log2(n) 个项目(其中 n 是项目数)。从这个角度来看,1000000 个项目的线性搜索平均需要 500000 次比较,最坏的情况是 1000000 次比较;一个二分查找最多需要 20 次比较,即使在最坏的情况下也是如此。

files := []string{"Test.conf", "util.go", "Makefile", "misc.go", "main.go"}
target := "Makefile"
sort.Strings(files)
i := sort.Search(len(files),
    func(i int) bool { return files[i] >= target })
if i < len(files) && files[i] == target {
    fmt.Printf("found \"%s\" at files[%d]\n", files[i], i)
}

https://play.golang.org/p/UIndYQ8FeW

于 2015-10-24T21:03:51.590 回答
36

刚刚有一个类似的问题,并决定尝试这个线程中的一些建议。

我已经对 3 种查找类型的最佳和最坏情况进行了基准测试:

  • 使用地图
  • 使用列表
  • 使用 switch 语句

这是功能代码:

func belongsToMap(lookup string) bool {
list := map[string]bool{
    "900898296857": true,
    "900898302052": true,
    "900898296492": true,
    "900898296850": true,
    "900898296703": true,
    "900898296633": true,
    "900898296613": true,
    "900898296615": true,
    "900898296620": true,
    "900898296636": true,
}
if _, ok := list[lookup]; ok {
    return true
} else {
    return false
}
}


func belongsToList(lookup string) bool {
list := []string{
    "900898296857",
    "900898302052",
    "900898296492",
    "900898296850",
    "900898296703",
    "900898296633",
    "900898296613",
    "900898296615",
    "900898296620",
    "900898296636",
}
for _, val := range list {
    if val == lookup {
        return true
    }
}
return false
}

func belongsToSwitch(lookup string) bool {
switch lookup {
case
    "900898296857",
    "900898302052",
    "900898296492",
    "900898296850",
    "900898296703",
    "900898296633",
    "900898296613",
    "900898296615",
    "900898296620",
    "900898296636":
    return true
}
return false
}

最好的情况选择列表中的第一项,最坏的情况使用不存在的值。

结果如下:

BenchmarkBelongsToMapWorstCase-4         2000000           787 ns/op
BenchmarkBelongsToSwitchWorstCase-4     2000000000           0.35 ns/op
BenchmarkBelongsToListWorstCase-4       100000000           14.7 ns/op
BenchmarkBelongsToMapBestCase-4          2000000           683 ns/op
BenchmarkBelongsToSwitchBestCase-4      100000000           10.6 ns/op
BenchmarkBelongsToListBestCase-4        100000000           10.4 ns/op

Switch一路赢,最坏情况比最好情况快得多。

地图是最差的,列表更接近切换。

所以道德是:如果你有一个静态的、相当小的列表,那么 switch 语句就是要走的路。

于 2018-10-08T21:02:47.857 回答
29

上面使用排序的例子很接近,但在字符串的情况下只需使用 SearchString:

files := []string{"Test.conf", "util.go", "Makefile", "misc.go", "main.go"}
target := "Makefile"
sort.Strings(files)
i := sort.SearchStrings(files, target)
if i < len(files) && files[i] == target {
    fmt.Printf("found \"%s\" at files[%d]\n", files[i], i)
}

https://golang.org/pkg/sort/#SearchStrings

于 2016-01-04T20:53:15.013 回答
12

这与 Python 的“in”运算符的自然感觉非常接近。您必须定义自己的类型。然后,您可以通过添加像“has”这样的方法来扩展该类型的功能,该方法的行为就像您希望的那样。

package main

import "fmt"

type StrSlice []string

func (list StrSlice) Has(a string) bool {
    for _, b := range list {
        if b == a {
            return true
        }
    }
    return false
}

func main() {
    var testList = StrSlice{"The", "big", "dog", "has", "fleas"}

    if testList.Has("dog") {
        fmt.Println("Yay!")
    }
}

我有一个实用程序库,我在其中为几种类型的切片定义了一些常见的东西,比如那些包含整数或我自己的其他结构的切片。

是的,它以线性时间运行,但这不是重点。重点是询问和了解 Go 有哪些通用语言结构,哪些没有。这是一个很好的锻炼。这个答案是愚蠢还是有用取决于读者。

于 2020-04-24T14:42:33.947 回答
8

另一种选择是使用地图作为一组。您只使用键,并将值设为始终为真的布尔值。然后您可以轻松检查地图是否包含密钥。如果您需要集合的行为,这很有用,如果您多次添加一个值,它只会在集合中出现一次。

这是一个简单的示例,我将随机数作为键添加到地图中。如果多次生成相同的数字也没关系,它只会在最终地图中出现一次。然后我使用一个简单的 if 检查来查看一个键是否在地图中。

package main

import (
    "fmt"
    "math/rand"
)

func main() {
    var MAX int = 10

    m := make(map[int]bool)

    for i := 0; i <= MAX; i++ {
        m[rand.Intn(MAX)] = true
    }

    for i := 0; i <= MAX; i++ {
        if _, ok := m[i]; ok {
            fmt.Printf("%v is in map\n", i)
        } else {
            fmt.Printf("%v is not in map\n", i)
        }
    }
}

这是在旅途中的游乐场

于 2016-01-07T03:56:45.830 回答