Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to learn more about "trie" data structures. I've read about them on Wikipedia but I'm still confused.

What is the most common use? Auto-complete in the address bar of a web browser... or?

Cheers!

share|improve this question
Do you mean "tree"? – Andrew Medico Nov 17 '08 at 19:42
Retagged it for ya. – Cybis Nov 17 '08 at 21:17
26  
@Andrew Medico: No, he doesn't! – dmeister Jun 29 '09 at 17:23

8 Answers

up vote 15 down vote accepted

A Trie (I prefer to call it a prefix tree), could be a good data structure for building a memory-efficient dictionary with fast lookups, and yes, autocompletion.

Think of it as a hashtable, providing fast lookup of key-value pairs (or just lookup of keys), but unlike a hashtable it allows you to iterate over the keys in sorted order.

share|improve this answer
1  
Correct, but the second part is not the best characterization of a trie. All (normal) trees[!] have the same property. – dmeister Jun 29 '09 at 17:25
@dmeister: not all trees allow you to iterate over the keys in sorted order. For instance, a min-heap tree does not, but a binary search tree does. – CEGRD Nov 26 '12 at 3:30
@CEGRD true. s/All (normal) trees/Most tree data structures/ – dmeister Nov 26 '12 at 8:22

You will find trie structures at the heart of many bioinformatic applications ( DNA sequence alignment, etc ). See: Trie-based data structures for sequence assembly (pdf)

The trie is also at the heart of one of the fastest known sorting algorithms: Burstsort. The implementation involves building a trie and then traversing it depth-first. It's speed is attained from it's cache-efficient properties. See: Efficient Trie-Based Sorting of Large Sets of Strings (pdf)

It's worth noting that Hadoop recently set a sort benchmark record. It's implementation uses trie structures: Terasort Source Code

share|improve this answer

I've been using modified trie's in my Internet Filter product since 1995. Probably most internet filters on the market utilize something like it. The advantage is that the time to find a match is related to the length of the match, not the number of items in the data structure. Also see my article: Fast Tree

--jeffk++

share|improve this answer
Cool product and site. – dicroce Mar 18 '09 at 14:28

Don't have a source, but I heard they are used in the T9 text prediction on many cell phones. Allows for easy additions of new words.

Mine has been permanently scarred with some typos.

share|improve this answer

Another use is the Aho-Corasick string searching algorithm which is based on a trie.

share|improve this answer

Autocomplete may be the most common as stated, another use is as a spell checking tool. See this for an example

share|improve this answer

Clojure's wicked-cool immutable Map and Vector types are implemented using a trie under the covers. Consider, for example the implementation of PersistentHashMap.

The reason I say they ware "wicked cool" is because they are immutable, providing great advantages for concurrent programming. (You don't need to synchronized access to something that can't change.) At the same time, you can generate new altered copies of a collection very efficiently because they don't actually copy, they share structure with the source collection.

share|improve this answer

I've used it to find popular prefixes and suffixes (when applied to reversed strings) to remove redundant parts of document titles in a collection.

You can also use it to easily create regular expression that matches given set of strings foo,bar,baz(foo|ba(r|z))

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.