Texonom
Texonom
/
Computing
Computing
/Data/Data Structure/Tree Data/Binary Tree/Search Tree/
Trie
Search

Trie

Creator
Creator
Seonglae Cho
Created
Created
2023 Dec 9 14:38
Editor
Editor
Seonglae Cho
Edited
Edited
2023 Dec 9 14:38
Refs
Refs
Tries
Ternary search tries
 
 
 
Trie
In computer science, a trie, also called digital tree or prefix tree, is a type of k-ary search tree, a tree data structure used for locating specific keys from within a set. These keys are most often strings, with links between nodes defined not by the entire key, but by individual characters. In order to access a key, the trie is traversed depth-first, following the links between nodes, which represent each character in the key.
Trie
https://en.wikipedia.org/wiki/Trie
Trie
 
 

Backlinks

Encoding Method

Recommendations

Texonom
Texonom
/
Computing
Computing
/Data/Data Structure/Tree Data/Binary Tree/Search Tree/
Trie
Copyright Seonglae Cho