Trie | ||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Type | Tree | |||||||||||||||||||||||
Invented | 1960 | |||||||||||||||||||||||
Invented by | Edward Fredkin,Axel Thue, and René de la Briandais | |||||||||||||||||||||||
|
In computer science, atrie (/ˈtraɪ/,/ˈtriː/), also known as adigital tree orprefix tree,[1] is a specializedsearch tree data structure used to store and retrieve strings from a dictionary or set. Unlike abinary search tree, nodes in a trie do not store their associated key. Instead, each node'sposition within the trie determines its associated key, with the connections between nodes defined by individualcharacters rather than the entire key.
Tries are particularly effective for tasks such as autocomplete, spell checking, and IP routing, offering advantages overhash tables due to their prefix-based organization and lack of hash collisions. Every child node shares a commonprefix with its parent node, and the root node represents theempty string. While basic trie implementations can be memory-intensive, various optimization techniques such as compression and bitwise representations have been developed to improve their efficiency. A notable optimization is theradix tree, which provides more efficient prefix-based storage.
While tries commonly store character strings, they can be adapted to work with any ordered sequence of elements, such aspermutations of digits or shapes. A notable variant is thebitwise trie, which uses individualbits from fixed-length binary data (such asintegers ormemory addresses) as keys.
The idea of a trie for representing a set of strings was first abstractly described byAxel Thue in 1912.[2][3] Tries were first described in a computer context by René de la Briandais in 1959.[4][3][5]: 336
The idea was independently described in 1960 byEdward Fredkin,[6] who coined the termtrie, pronouncing it/ˈtriː/ (as "tree"), after the middle syllable ofretrieval.[7][8] However, other authors pronounce it/ˈtraɪ/ (as "try"), in an attempt to distinguish it verbally from "tree".[7][8][3]
Tries are a form of string-indexed look-up data structure, which is used to store a dictionary list of words that can be searched on in a manner that allows for efficient generation ofcompletion lists.[9][10]: 1 A prefix trie is anordered tree data structure used in the representation of a set of strings over a finite alphabet set, which allows efficient storage of words with common prefixes.[1]
Tries can be efficacious onstring-searching algorithms such aspredictive text,approximate string matching, andspell checking in comparison to binary search trees.[11][8][12]: 358 A trie can be seen as a tree-shapeddeterministic finite automaton.[13]
Tries support various operations: insertion, deletion, and lookup of a string key. Tries are composed of nodes that contain links, which either point to other suffix child nodes ornull. As for every tree, each node but the root is pointed to by only one other node, called itsparent. Each node contains as many links as the number of characters in the applicablealphabet (although tries tend to have a substantial number of null links). In some cases, the alphabet used is simply that of thecharacter encoding—resulting in, for example, a size of 256 in the case of (unsigned)ASCII.[14]: 732
The null links within the children of a node emphasize the following characteristics:[14]: 734 [5]: 336
A basicstructure type of nodes in the trie is as follows; may contain an optional, which is associated with each key stored in the last character of string, or terminal node.
structure Node ChildrenNode[Alphabet-Size] Is-TerminalBoolean ValueData-Typeend structure |
Searching for a value in a trie is guided by the characters in the search string key, as each node in the trie contains a corresponding link to each possible character in the given string. Thus, following the string within the trie yields the associated value for the given string key. A null link during the search indicates the inexistence of the key.[14]: 732-733
The following pseudocode implements the search procedure for a given stringkey in a rooted triex.[15]: 135
Trie-Find(x, key)for 0 ≤ i < key.lengthdoif x.Children[key[i]] = nilthenreturn falseend if x := x.Children[key[i]]repeatreturn x.Value |
In the above pseudocode,x andkey correspond to the pointer of trie's root node and the string key respectively. The search operation, in a standard trie, takes time, where is the size of the string parameter, and corresponds to thealphabet size.[16]: 754 Binary search trees, on the other hand, take in the worst case, since the search depends on the height of the tree () of the BST (in case ofbalanced trees), where and being number of keys and the length of the keys.[12]: 358
The trie occupies less space in comparison with a BST in the case of a large number of short strings, since nodes share common initial string subsequences and store the keys implicitly.[12]: 358 The terminal node of the tree contains a non-null value, and it is a searchhit if the associated value is found in the trie, and searchmiss if it is not.[14]: 733
Insertion into trie is guided by using thecharacter sets as indexes to the children array until the last character of the string key is reached.[14]: 733-734 Each node in the trie corresponds to one call of theradix sorting routine, as the trie structure reflects the execution of pattern of the top-down radix sort.[15]: 135
123456789 | Trie-Insert(x, key, value)for 0 ≤ i < key.lengthdoif x.Children[key[i]] = nilthen x.Children[key[i]] := Node()end if x := x.Children[key[i]]repeat x.Value := value x.Is-Terminal := True |
If a null link is encountered prior to reaching the last character of the string key, a new node is created (line 3).[14]: 745 The value of the terminal node is assigned to the input value; therefore, if the former was non-null at the time of insertion, it is substituted with the new value.
Deletion of akey–value pair from a trie involves finding the terminal node with the corresponding string key, marking the terminal indicator and value tofalse and null correspondingly.[14]: 740
The following is arecursive procedure for removing a stringkey from rooted trie (x).
123456789101112131415 | Trie-Delete(x, key)if key = nilthenif x.Is-Terminal = Truethen x.Is-Terminal := False x.Value := nilend iffor 0 ≤ i < x.Children.lengthif x.Children[i] != nilreturn xend ifrepeatreturn nilend if x.Children[key[0]] := Trie-Delete(x.Children[key[0]], key[1:])return x |
The procedure begins by examining thekey; null denotes the arrival of a terminal node or end of a string key. If the node is terminal it has no children, it is removed from the trie (line 14). However, an end of string key without the node being terminal indicates that the key does not exist, thus the procedure does not modify the trie. The recursion proceeds by incrementingkey's index.
A trie can be used to replace ahash table, over which it has the following advantages:[12]: 358
However, tries are less efficient than a hash table when the data is directly accessed on asecondary storage device such as a hard disk drive that has higherrandom access time than themain memory.[6] Tries are also disadvantageous when the key value cannot be easily represented as string, such asfloating point numbers where multiple representations are possible (e.g. 1 is equivalent to 1.0, +1.0, 1.00, etc.),[12]: 359 however it can be unambiguously represented as abinary number inIEEE 754, in comparison totwo's complement format.[17]
Tries can be represented in several ways, corresponding to different trade-offs between memory use and speed of the operations.[5]: 341 Using a vector of pointers for representing a trie consumes enormous space; however, memory space can be reduced at the expense of running time if asingly linked list is used for each node vector, as most entries of the vector contains.[3]: 495
Techniques such asalphabet reduction may reduce the large space requirements by reinterpreting the original string as a longer string over a smaller alphabet i.e. a string ofn bytes can alternatively be regarded as a string of2nfour-bit units and stored in a trie with 16 instead of 256 pointers per node. Although this can reduce memory usage by up to a factor of eight, lookups need to visit twice as many nodes in the worst case.[5]: 347–352 Other techniques include storing a vector of 256 ASCII pointers as a bitmap of 256 bits representing ASCII alphabet, which reduces the size of individual nodes dramatically.[18]
Bitwise tries are used to address the enormous space requirement for the trie nodes in a naive simple pointer vector implementations. Each character in the string key set is represented via individual bits, which are used to traverse the trie over a string key. The implementations for these types of trie usevectorized CPU instructions tofind the first set bit in a fixed-length key input (e.g.GCC's__builtin_clz()
intrinsic function). Accordingly, the set bit is used to index the first item, or child node, in the 32- or 64-entry based bitwise tree. Search then proceeds by testing each subsequent bit in the key.[19]
This procedure is alsocache-local andhighly parallelizable due toregister independency, and thus performant onout-of-order execution CPUs.[19]
Radix tree, also known as acompressed trie, is a space-optimized variant of a trie in which any node with only one child gets merged with its parent; elimination of branches of the nodes with a single child results in better metrics in both space and time.[20][21]: 452 This works best when the trie remains static and set of keys stored are very sparse within their representation space.[22]: 3–16
One more approach is to "pack" the trie, in which a space-efficient implementation of a sparse packed trie applied to automatichyphenation, in which the descendants of each node may be interleaved in memory.[8]
Patricia trees are a particular implementation of the compressed binary trie that uses thebinary encoding of the string keys in its representation.[23][15]: 140 Every node in a Patricia tree contains an index, known as a "skip number", that stores the node's branching index to avoid empty subtrees during traversal.[15]: 140-141 A naive implementation of a trie consumes immense storage due to larger number of leaf-nodes caused by sparse distribution of keys; Patricia trees can be efficient for such cases.[15]: 142 [24]: 3
A representation of a Patricia tree is shown to the right. Each index value adjacent to the nodes represents the "skip number"—the index of the bit with which branching is to be decided.[24]: 3 The skip number 1 at node 0 corresponds to the position 1 in the binary encoded ASCII where the leftmost bit differed in the key set.[24]: 3-4 The skip number is crucial for search, insertion, and deletion of nodes in the Patricia tree, and abit masking operation is performed during every iteration.[15]: 143
Trie data structures are commonly used inpredictive text orautocomplete dictionaries, andapproximate matching algorithms.[11] Tries enable faster searches, occupy less space, especially when the set contains large number of short strings, thus used inspell checking, hyphenation applications andlongest prefix match algorithms.[8][12]: 358 However, if storing dictionary words is all that is required (i.e. there is no need to store metadata associated with each word), a minimal deterministic acyclic finite state automaton (DAFSA) or radix tree would use less storage space than a trie. This is because DAFSAs and radix trees can compress identical branches from the trie which correspond to the same suffixes (or parts) of different words being stored. String dictionaries are also utilized innatural language processing, such as findinglexicon of atext corpus.[25]: 73
Lexicographic sorting of a set of string keys can be implemented by building a trie for the given keys and traversing the tree inpre-order fashion;[26] this is also a form ofradix sort.[27] Tries are also fundamental data structures forburstsort, which is notable for being the fastest string sorting algorithm as of 2007,[28] accomplished by its efficient use of CPUcache.[29]
A special kind of trie, called asuffix tree, can be used to index allsuffixes in a text to carry out fast full-text searches.[30]
A specialized kind of trie called a compressed trie, is used inweb search engines for storing theindexes - a collection of all searchable words.[31] Each terminal node is associated with a list ofURLs—called occurrence list—to pages that match the keyword. The trie is stored in the main memory, whereas the occurrence is kept in an external storage, frequently in largeclusters, or the in-memory index points to documents stored in an external location.[32]
Tries are used inBioinformatics, notably insequence alignment software applications such asBLAST, which indexes all the different substring of lengthk (calledk-mers) of a text by storing the positions of their occurrences in a compressed trie sequence databases.[25]: 75
Compressed variants of tries, such as databases for managingForwarding Information Base (FIB), are used in storingIP address prefixes withinrouters andbridges for prefix-based lookup to resolvemask-based operations inIP routing.[25]: 75
The preorder of the nodes in a trie is the same as the lexicographical order of the strings they represent assuming the children of a node are ordered by the edge labels.