I have data that is organized in kind of a "key-key" format, rather than "key-value". It's like a HashMap, but I will need O(1) lookup in both directions. Is there a name for this type of data structure, and is anything like this included in Java's standard libraries? (or maybe Apache Commons?)

I could write my own class that basically uses two mirrored Maps, but I'd rather not reinvent the wheel (if this already exists but I'm just not searching for the right term).

link|improve this question

feedback

4 Answers

up vote 33 down vote accepted

There is no such class in the Java API. The Apache Commons class you want is going to be one of the implementations of BidiMap.

As a mathematician, I would call this kind of structure a bijection.

link|improve this answer
thanks, exactly what i was looking for! – Kip Nov 3 '09 at 21:09
as a non-mathematician I would call this kind of structure "a map what lets you lookup values by key or the other way around" – Don Mar 22 at 16:44
feedback

In addition to Apache Commons, Guava also has a BiMap.

link|improve this answer
thanks for the info! i'm sticking with apache for the time being though (unless there are some good reasons not to?) – Kip Nov 3 '09 at 21:10
I can't offer a good comparison to apache collections, but google collections does have a lot of nice stuff that I think would make it worth looking in to. – ColinD Nov 3 '09 at 21:25
8  
One advantage of Google Collections is that it has generics whereas Commons Collections does not. – Mark Nov 3 '09 at 21:38
1  
For comparison of the two libs, see the quotes in this answer: stackoverflow.com/questions/787446/… (and the original interview). That's biased towards Google, for obvious reasons, but even so I think it's safe to say you're better off with Google Collections nowadays. – Jonik Nov 5 '09 at 18:21
1  
Care to explain the downvote? – ColinD May 24 '11 at 18:38
show 1 more comment
feedback

Here is a simple class I used to get this done (I did not want to have yet another third party dependency). It does not offer all features available in Maps but it is a good start.

    public class BidirectionalMap<KeyType, ValueType>{
        private Map<KeyType, ValueType> keyToValueMap = new ConcurrentHashMap<KeyType, ValueType>();
        private Map<ValueType, KeyType> valueToKeyMap = new ConcurrentHashMap<ValueType, KeyType>();

        synchronized public void put(KeyType key, ValueType value){
            keyToValueMap.put(key, value);
            valueToKeyMap.put(value, key);
        }

        synchronized public ValueType removeByKey(KeyType key){
            ValueType removedValue = keyToValueMap.remove(key);
            valueToKeyMap.remove(removedValue);
            return removedValue;
        }

        synchronized public KeyType removeByValue(ValueType value){
            KeyType removedKey = valueToKeyMap.remove(value);
            keyToValueMap.remove(removedKey);
            return removedKey;
        }

        public boolean containsKey(KeyType key){
            return keyToValueMap.containsKey(key);
        }

        public boolean containsValue(ValueType value){
            return keyToValueMap.containsValue(value);
        }

        public KeyType getKey(ValueType value){
            return valueToKeyMap.get(value);
        }

        public ValueType get(KeyType key){
            return keyToValueMap.get(key);
        }
    }
link|improve this answer
feedback

If no collisions occur, you can always add both directions to the same HashMap :-)

link|improve this answer
2  
if it weren't for the smilie, i'd downvote you for that.... :) – Kip Nov 3 '09 at 21:12
@Kip: Why? In some contexts this is a perfectly legitimate solution. So would be having two hash maps. – Software Monk Nov 3 '09 at 23:38
2  
no, it's an ugly, fragile hack. it requires maintenance of the bi-directional property on every get() and put(), and it could be passed to other methods that modify the map without even knowing about the bi-directional property. maybe it'd be okay as a local variable inside a method that isn't passed anywhere, or if it was made unmodifiable immediately after creation. but even then, it's fragile (someone comes along and tweaks that function and breaks bidirectionality in a way that will not always immediately show itself to be a problem) – Kip Nov 4 '09 at 1:22
@Kip, I agree that such a usage should be kept internal to the class using that map, but your last remark only holds true if the corresponding JUnit tests are sloppy :-) – rsp Nov 4 '09 at 9:32
totally a hack. – b3bop Jan 20 at 9:04
feedback

Your Answer

 
or
required, but never shown

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