GO语言"index/suffixarray"包中"Index.Lookup"类型的用法及代码示例。
用法:
func(x *Index) Lookup(s []byte, n int)(result []int)
查找返回最多 n 个索引的未排序列表,其中字节字符串 s 出现在索引数据中。如果 n < 0,则返回所有匹配项。如果 s 为空、未找到 s 或 n == 0,则结果为 nil。查找时间为 O(log(N)*len(s) + len(result)),其中 N 是索引数据的大小。
例子:
package main
import (
"fmt"
"index/suffixarray"
)
func main() {
index := suffixarray.New([]byte("banana"))
offsets := index.Lookup([]byte("ana"), -1)
for _, off := range offsets {
fmt.Println(off)
}
}
输出:
1 3
相关用法
- GO IndexByte用法及代码示例
- GO IndexFunc用法及代码示例
- GO IndexAny用法及代码示例
- GO IndexRune用法及代码示例
- GO Index用法及代码示例
- GO Indent用法及代码示例
- GO Int.Scan用法及代码示例
- GO Ints用法及代码示例
- GO Intn用法及代码示例
- GO Info用法及代码示例
- GO Int.SetString用法及代码示例
- GO Inspect用法及代码示例
- GO IntsAreSorted用法及代码示例
- GO Itoa用法及代码示例
- GO IP.IsPrivate用法及代码示例
- GO IsDigit用法及代码示例
- GO IP.Equal用法及代码示例
- GO IsAbs用法及代码示例
- GO IP.IsLinkLocalMulticast用法及代码示例
- GO IsGraphic用法及代码示例
注:本文由纯净天空筛选整理自golang.google.cn大神的英文原创作品 Index.Lookup。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。