Trie is pronounced as "try" and also known as a prefix tree. It is a tree-like data structure that stores a dynamic set of strings. Tries are commonly used to facilitate operations like predictive text or autocomplete features on mobile phones or web search engines. The name "trie" comes from the word "retrieval" because the trie can be used to retrieve a value given a key.
The trie is commonly used to work with strings, but it can be used with any sequence of objects if you can break them down into smaller parts.
Trie also is a specialisation of k-ary tree, where for example k can be the size of the alphabet or the number of possible characters in the input.
Words: hello
, help
, hero
, play
, player
flowchart TD
A(Root)--- B(h)
B --- C(e)
C --- D(l)
D --- E(l)
E --- F(o):::IsEndOfWord
D --- G(p):::IsEndOfWord
C --- H(r)
H --- I(o):::IsEndOfWord
A --- J(p)
J --- K(l)
K --- L(a)
L --- M(y):::IsEndOfWord
M --- O(e)
O --- P(r):::IsEndOfWord
classDef IsEndOfWord stroke:#f66,stroke-width:2px,color:#fff
n
: Number of keys in the trie.- Previous example: 5 keys ->
hello
,help
,hero
,play
,player
- Previous example: 5 keys ->
m
: Maximum length of a key in the trie.- Previous example: 6
hello
-> 5help
-> 4hero
-> 4play
-> 4player
-> 6
- Previous example: 6
k
: Number of possible characters in the input.- Previous example: 26 (alphabet)
Operation | Time Complexity | Description |
---|---|---|
Insert | O(m) |
Each character of a word of lengthO(m) may require traversal/creation of a node. |
Search | O(m) |
Searching involves traversing nodes from the root to a depth of O(m) corresponding to each character in the word. |
StartsWith | O(m) |
Similar to Search but for prefixes. Only needs to reach the depth where the prefix ends. |
Delete | O(m) |
Deletion requires finding the word (taking O(m) time) and then potentially modifying the endpoint and cleaning up any unused nodes. |
- Worst case space complexity is
O(n * m * k)
, wherek
is the number of possible characters in the input. - Typically, the space complexity is
O(n * m)
.