├── LICENSE ├── README.md ├── dfa.go ├── go.mod ├── go.sum └── trie.go /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bean-du/dfa/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bean-du/dfa/HEAD/README.md -------------------------------------------------------------------------------- /dfa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bean-du/dfa/HEAD/dfa.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/bean-du/dfa 2 | 3 | go 1.16 4 | -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bean-du/dfa/HEAD/trie.go --------------------------------------------------------------------------------