trie icon indicating copy to clipboard operation
trie copied to clipboard

Data structure and relevant algorithms for extremely fast prefix/fuzzy string searching.

Results 14 trie issues
Sort by recently updated
recently updated
newest added

Here are some of the slowest lines in my usage https://github.com/derekparker/trie/blob/master/trie.go#L72 I am attempting to optimize these by short circuit logic and removing unneeded function calls. ``` ROUTINE ======================== github.com/derekparker/trie.(*Trie).Find...

See this http://play.golang.org/p/of8h4uJ5jR After calling Remove, the trie still finds the key.

bug

remove will crash when keys doesnt exists

I just realised *node[T] doesn't have a Meta() method on the default branch, or am I missing something?