vote up 4 vote down star
3

I have a Java program that stores a lot of mappings from Strings to various objects.

Right now, my options are either to rely on hashing (via HashMap) or on binary searches (via TreeMap). I am wondering if there is an efficient and standard trie-based map implementation in a popular and quality collections library?

I've written my own in the past, but I'd rather go with something standard, if available.

Quick clarification: While my question is general, in the current project I am dealing with a lot of data that is indexed by fully-qualified class name or method signature. Thus, there are many shared prefixes.

flag

71% accept rate
are the strings known in advance? Do they need to be accessed by string only? – sfossen Mar 8 at 22:12

4 Answers

vote up 4 vote down check

You might want to look at the Trie implementation that Limewire is contributing to the Google collections library.

link|flag
vote up 0 vote down

Are HashMap and TreeMap that slow?

We maintain some pretty big maps and speed has never seemed to be that much of an issue.

link|flag
TreeMap and HashMap are interfaces. – Andrew Dashin Mar 8 at 17:09
In terms of speed, a hash should be faster than a trie. But I think he's more worried about memory efficiency. – dehmann Mar 8 at 17:11
@Andrew Dashin: They are not interfaces. Their respective interfaces are Map and SortedMap. – Esko Luontola Mar 8 at 17:12
They're interfaces but are usually used with an implementation that conforms to their name. – Uri Mar 8 at 17:16
Tries are cheaper space wise since they supposedly don't store entire strings (a lot of my strings have common prefixes) – Uri Mar 8 at 17:16
show 6 more comments
vote up -1 vote down

What you need is org.apache.commons.collections.FastTreeMap , I think.

link|flag
vote up 0 vote down

You might look at this TopCoder one as well (registration required...).

link|flag

Your Answer

Get an OpenID
or

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