kpol / trie

Trie (a.k.a. prefix tree) C# implementation. Has constant-time string prefix lookup.
MIT License
99 stars 19 forks source link

Added support for pattern matching #12

Closed kpol closed 7 months ago

kpol commented 7 months ago

Example: var result = trie.GetByPattern([Character.Any, 'c', Character.Any, Character.Any, 't']);