Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 515 Bytes

README.md

File metadata and controls

14 lines (10 loc) · 515 Bytes

trie

A minimal implementation of a trie data structure for Go. Differs from most implementations in that it uses string slices ([]string) as keys, rather than just strings.

This makes it suitable for efficiently storing information about hierarchical systems in general, rather than being specifically geared towards string lookup.

See also the Godoc documentation for trie.