vote up 2 vote down star

I ran across some code recently at work (recreated to be similar to what I am dealing with) similar to the code below

Is there a way I can rework the code below to use one data structure (with performance in mind)?

Here is some code to illustrate what I mean:

public class ObjectMapper {

    private Map<UUID,Integer> uuidMap;
    private Map<Integer,UUID> indexMap;

    public ObjectMapper(){
    	uuidMap = new HashMap<UUID,Integer>();
    	indexMap = new HashMap<Integer,UUID>();
    }

    public void addMapping(int index, UUID uuid){
    	uuidMap.put(uuid, index);
    	indexMap.put(index, uuid);
    }


    .
    .
    .

    public Integer getIndexByUUID(UUID uuid){
    	return uuidMap.get(uuid);
    }

    public UUID getUUIDByIndex(Integer index){
    	return indexMap.get(index);
    }


}
flag

1  
The existing approach of using a Map instance for each mapping seems reasonable to me. – Steve Kuo May 13 at 22:49

3 Answers

vote up 3 vote down check

This is answered here with the recommendation to use BitMap from Google Collections

link|flag
Cool. I was really hoping for a way to do this without bringing in an outside Jar, though. But that may not be possible. – Grasper May 13 at 23:01
If you look at BiMap's code, they use the double map to implement it, so I would say that it is the most obvious implementation, anyway. google-collections.googlecode.com/svn/trunk/… – Yishai May 13 at 23:40
vote up 0 vote down

Apache collections supports a BidiMap interface and a variety of fairly effective implementations.

link|flag
vote up 0 vote down

You could use a single Map<Object,Object> to do both mappings. Ugly, sure. Performance should be roughly the same, or slightly better in the unlikely event that you have many ObjectMappers with few mapped 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.