up vote 2 down vote favorite
share [g+] share [fb]

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.

link|improve this question

feedback

3 Answers

up vote 5 down vote accepted

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|improve this answer
feedback

Apache Commons Collections provides a BidiMap which serves this purpose.

link|improve this answer
feedback

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

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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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