Konubinix' opinionated web of thoughts

Trie

Fleeting

specialized search tree data structure used to store and retrieve strings from a dictionary or set. Unlike a binary search tree, nodes in a trie do not store their associated key. Instead, each node’s position within the trie determines its associated key, with the connections between nodes defined by individual characters rather than the entire key.

https://en.wikipedia.org/wiki/Trie

Notes linking here