Top "Radix-tree" questions

A radix tree is a trie where each node with only one child is merged with its child as form of space optimization.

What is the difference between trie and radix trie data structures?

Are the trie and radix trie data structures the same thing? If they aren't the same, then what is the …

algorithm data-structures tree patricia-trie radix-tree
Trie implementation

I am attempting to implement a very simple Trie in Java that supports 3 operations. I'd like it to have an …

java trie abstract-data-type radix radix-tree