文件名称:goac:在 Golang 中实现的 Aho-Corasick 字符串匹配库
文件大小:2KB
文件格式:ZIP
更新时间:2024-06-28 00:45:13
Go
goac --- Aho-Corasick多模式字符串匹配算法Go语言实现 An Aho-Corasick multi-pattern string matching lib written in Golang Author: Inspired by: Usage Example package goac import "goac" func TestAhoCorasick(t *testing.T) { content := "Aho-Corasick是一种基于Trie树的确定性有穷状态自动机算法" ac := NewAhoCorasick() ac.AddPattern("树") ac.AddPattern("自动机") ac.AddPattern("Trie") ac.AddPattern("基于") ac.Build() results := ac.Scan(con
【文件预览】:
goac-master
----goac_test.go(502B)
----ahocorasick.go(2KB)
----README.md(1008B)