Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need a collection class which has both: quick index and hash access. Now I have ArrayList. It has good index acces, but his contains method is not performant. HashSet has good contains implementation but no indexed acces. Which collection has both? Probably something from Apache? Or should I create my own collection class which has both: ArrayList for indexed acces and HashSet for contains check?

Just for clarification: i need both get(int index) and contains(Object o)

share|improve this question
2  
You own data structure which contains both (or some variation on that) is probably the way to go. – Dukeling Feb 22 at 12:09
Can you explain why you want this? – Louis Wasserman Feb 22 at 18:02
Yes I can. I have legacy code, which use nearly all methods of a List object (ArrayList). I have no chance to rewrite it, but I want to increase its performance. The main problem here are contains and indexOf methods because they have linear performance. – Sergiy Medvynskyy Feb 23 at 20:34

4 Answers

If indexed access performance is not a problem the closest match is LinkedHashSet whose API says that it is

Hash table and linked list implementation of the Set interface, with predictable iteration order.

at least I dont think that the performance will be be worse than that of LinkedListPerformance. Otherwise I cannot see no alternative but your ArrayList + HashTable solution

share|improve this answer
I'm not sure that it's really better – Sergiy Medvynskyy Feb 22 at 12:16

If you are traversing the index from start to finish, I think this might satisfy your needs: LinkedHashSet

If you need to randomly access via the index, as well as hash access, if no-one else has a better suggestion I guess you can make your own collection which does both.

share|improve this answer
2  
As far as I can see, indexed access would be O(n), which is not particularly efficient. – Dukeling Feb 22 at 12:04
LinkedHashSet has no method 'get(int index)' – Sergiy Medvynskyy Feb 22 at 12:09
@SergiyMedvynskyy Yes, but you can use the iterator to simulate it. – Dukeling Feb 22 at 12:11
Sure but in this case I will have the same performance bottleneck on another place. – Sergiy Medvynskyy Feb 22 at 12:20

Do like this; use combination of Hash technique as well as list to get best of both worlds :)

class DataStructure<Integer>{
   Hash<Integer,Integer> hash = new HashMap<Integer, Integer>();
   List<Integer> list = new ArrayList<Integer>();

    public void add(Integer i){
        hash.add(i,i);
        list.add(i);
    }
    public Integer get(int index){
        return list.get(index);
    }
   ...
} //used Integers to make it simpler

So object; you keep in HashMap/HashSet as well as ArrayList.

So if you want to use

 contains method : call hashed contains method.

 get an object with index: use array to return the value

Just make sure that you have both these collections in sync. And take care of updation/deletion in both data structures.

share|improve this answer
It's the last loophole, which I would use, if I cannot find something better – Sergiy Medvynskyy Feb 22 at 14:05

I don't know the exact lookup times, but maybe you could use some implementation of the Map interface. You could store you objects with map.put(objectHash, obj).

Then you could verify that you have a certain object with:

boolean contained = map.containsValue(obj);

And you can use the hash to lookup an object in the map:

MyObject object = map.get(objectHash);

Though, the only downfall is that you would need to know your hashes on this lookup call which may not be probably in your implementation.

share|improve this answer
containsValue for HashMap has the same performance as contains of a list - the linear. I wish the logarithmical (if possible of course). – Sergiy Medvynskyy Feb 22 at 14:02
@SergiyMedvynskyy Ahh, I was not aware of that. Do you have a reference of where you found that out? – Dan W Feb 22 at 14:11
Simply see the implementation of HashMap. Method containsValue iterates over all entries and checks for equality like the contains method of ArrayList. – Sergiy Medvynskyy Feb 22 at 14:30

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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