Compressed Trie

Home > Computer Science > Algorithms and data structures > Tries > Compressed Trie

A compressed Trie, also known as a compact Trie, uses a compressed form of storage where nodes that have only one child are combined. This results in a smaller representation of the Trie and faster look-up times.