├── .github └── workflows │ └── dotnet-test.yml ├── .gitignore ├── LICENSE ├── NReco.Text.AhoCorasickDoubleArrayTrie.sln ├── README.md ├── src └── NReco.Text.AhoCorasickDoubleArrayTrie │ ├── AhoCorasickDoubleArrayTrie.Builder.cs │ ├── AhoCorasickDoubleArrayTrie.Hit.cs │ ├── AhoCorasickDoubleArrayTrie.State.cs │ ├── AhoCorasickDoubleArrayTrie.cs │ └── NReco.Text.AhoCorasickDoubleArrayTrie.csproj └── test └── NReco.Text.AhoCorasickDoubleArrayTrie.Tests ├── AhoCorasickDoubleArrayTrieTests.cs ├── NReco.Text.AhoCorasickDoubleArrayTrie.Tests.csproj └── testdata ├── cn ├── dictionary.txt └── text.txt └── en ├── dictionary.txt └── text.txt /.github/workflows/dotnet-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nreco/AhoCorasickDoubleArrayTrie/HEAD/.github/workflows/dotnet-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nreco/AhoCorasickDoubleArrayTrie/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nreco/AhoCorasickDoubleArrayTrie/HEAD/LICENSE -------------------------------------------------------------------------------- /NReco.Text.AhoCorasickDoubleArrayTrie.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nreco/AhoCorasickDoubleArrayTrie/HEAD/NReco.Text.AhoCorasickDoubleArrayTrie.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nreco/AhoCorasickDoubleArrayTrie/HEAD/README.md -------------------------------------------------------------------------------- /src/NReco.Text.AhoCorasickDoubleArrayTrie/AhoCorasickDoubleArrayTrie.Builder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nreco/AhoCorasickDoubleArrayTrie/HEAD/src/NReco.Text.AhoCorasickDoubleArrayTrie/AhoCorasickDoubleArrayTrie.Builder.cs -------------------------------------------------------------------------------- /src/NReco.Text.AhoCorasickDoubleArrayTrie/AhoCorasickDoubleArrayTrie.Hit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nreco/AhoCorasickDoubleArrayTrie/HEAD/src/NReco.Text.AhoCorasickDoubleArrayTrie/AhoCorasickDoubleArrayTrie.Hit.cs -------------------------------------------------------------------------------- /src/NReco.Text.AhoCorasickDoubleArrayTrie/AhoCorasickDoubleArrayTrie.State.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nreco/AhoCorasickDoubleArrayTrie/HEAD/src/NReco.Text.AhoCorasickDoubleArrayTrie/AhoCorasickDoubleArrayTrie.State.cs -------------------------------------------------------------------------------- /src/NReco.Text.AhoCorasickDoubleArrayTrie/AhoCorasickDoubleArrayTrie.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nreco/AhoCorasickDoubleArrayTrie/HEAD/src/NReco.Text.AhoCorasickDoubleArrayTrie/AhoCorasickDoubleArrayTrie.cs -------------------------------------------------------------------------------- /src/NReco.Text.AhoCorasickDoubleArrayTrie/NReco.Text.AhoCorasickDoubleArrayTrie.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nreco/AhoCorasickDoubleArrayTrie/HEAD/src/NReco.Text.AhoCorasickDoubleArrayTrie/NReco.Text.AhoCorasickDoubleArrayTrie.csproj -------------------------------------------------------------------------------- /test/NReco.Text.AhoCorasickDoubleArrayTrie.Tests/AhoCorasickDoubleArrayTrieTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nreco/AhoCorasickDoubleArrayTrie/HEAD/test/NReco.Text.AhoCorasickDoubleArrayTrie.Tests/AhoCorasickDoubleArrayTrieTests.cs -------------------------------------------------------------------------------- /test/NReco.Text.AhoCorasickDoubleArrayTrie.Tests/NReco.Text.AhoCorasickDoubleArrayTrie.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nreco/AhoCorasickDoubleArrayTrie/HEAD/test/NReco.Text.AhoCorasickDoubleArrayTrie.Tests/NReco.Text.AhoCorasickDoubleArrayTrie.Tests.csproj -------------------------------------------------------------------------------- /test/NReco.Text.AhoCorasickDoubleArrayTrie.Tests/testdata/cn/dictionary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nreco/AhoCorasickDoubleArrayTrie/HEAD/test/NReco.Text.AhoCorasickDoubleArrayTrie.Tests/testdata/cn/dictionary.txt -------------------------------------------------------------------------------- /test/NReco.Text.AhoCorasickDoubleArrayTrie.Tests/testdata/cn/text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nreco/AhoCorasickDoubleArrayTrie/HEAD/test/NReco.Text.AhoCorasickDoubleArrayTrie.Tests/testdata/cn/text.txt -------------------------------------------------------------------------------- /test/NReco.Text.AhoCorasickDoubleArrayTrie.Tests/testdata/en/dictionary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nreco/AhoCorasickDoubleArrayTrie/HEAD/test/NReco.Text.AhoCorasickDoubleArrayTrie.Tests/testdata/en/dictionary.txt -------------------------------------------------------------------------------- /test/NReco.Text.AhoCorasickDoubleArrayTrie.Tests/testdata/en/text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nreco/AhoCorasickDoubleArrayTrie/HEAD/test/NReco.Text.AhoCorasickDoubleArrayTrie.Tests/testdata/en/text.txt --------------------------------------------------------------------------------