vote up 2 vote down star

A Map maps from keys to values and provides quick access based on the knowledge of the key.

Does there exist a data structure like Maps which supports both key to value and value to key access? Sometimes I may want to derefence the Map via the value, while other times by the key.

flag

3 Answers

vote up 5 vote down check

Not in the JDK, but you can find a good BiMap implementation in the Google Collections : http://google-collections.googlecode.com/svn/trunk/javadoc/com/google/common/collect/BiMap.html

link|flag
vote up 5 vote down

Apache Commons Collections provides a BidiMap which serves this purpose.

link|flag
vote up 2 vote down

Have a look at org.apache.commons.collections.BidiMap.

Defines a map that allows bidirectional lookup between key and values.

link|flag

Your Answer

Get an OpenID
or

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