> Jeez! I have studied CS for more than 6 years and this is the first
> time I have seen this term :-))
Tries are discussed in Knuth's The Art of Computer Programming (volume
1, I think). The only major usage I have ever heard of them was in TeX's
hyphenation algorithm. It is, to say the least, not a very popular data
structure.

Signature
Beware of bugs in the above code; I have only proved it correct, not
tried it. -- Donald E. Knuth
Matt Humphrey - 01 Oct 2007 22:55 GMT
| > Jeez! I have studied CS for more than 6 years and this is the first
| > time I have seen this term :-))
[quoted text clipped - 3 lines]
| hyphenation algorithm. It is, to say the least, not a very popular data
| structure.
I thought they were used just for dictionaries. When I learned how to do
them (long ago) one of their advantages was that they could be traversed
while in an dense binary format--instead of storing keys and offsets only
certain bit counts are stored. Wikipedia says they're part of the fastest
technique for sorting strings.
Matt Humphrey http://www.iviz.com/
Joshua Cranmer - 01 Oct 2007 23:03 GMT
> | > Jeez! I have studied CS for more than 6 years and this is the first
> | > time I have seen this term :-))
[quoted text clipped - 9 lines]
> certain bit counts are stored. Wikipedia says they're part of the fastest
> technique for sorting strings.
s/very popular/well-known/
I too have known some semantics for a while, but I didn't know them
under the name `trie'.

Signature
Beware of bugs in the above code; I have only proved it correct, not
tried it. -- Donald E. Knuth
Christian - 01 Oct 2007 23:33 GMT
Joshua Cranmer schrieb:
>> Jeez! I have studied CS for more than 6 years and this is the first
>> time I have seen this term :-))
[quoted text clipped - 3 lines]
> hyphenation algorithm. It is, to say the least, not a very popular data
> structure.
your os probably uses these tries to index your disc storage for faster
searching.. (suffixtrees are also tries)
Also some state of the art p2p systems use a distributed trie instead of
a normal dht.