blob: abecc4aed8687ceb4fe800d83b1a632aa15fb892 (
plain) (
blame)
1
2
3
4
|
A trie is a tree-like data structure whose nodes store the letters of an
alphabet. By structuring the nodes in a particular way, words and strings
can be retrieved from the structure by traversing down a branch path of
the tree.
|