Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I wish to

  1. Avoid duplicated item being inserted.
  2. When I iterate through the collection class, the returned item is same as insertion order.

May I know, what thing I should consider, to choose either ArrayList (explicitly perform contains check before insertion) or LinkedHashSet?

Thanks.

share|improve this question

3 Answers

up vote 9 down vote accepted

Definitely use LinkedHashSet. It is made for what you need. Searching entire ArrayList every time you need to insert something will be performance killer (O(n) every time))

share|improve this answer
Of course the performance will depend upon sizes, frequency of operations, memory usage, etc. – Tom Hawtin - tackline Aug 21 '10 at 16:56

A LinkedHashSet seems to fit the bill perfectly.

When you build your own objects, and plan to use them in a Collection like LinkedHashSet here. Don't forget to override both equals and hashcode for the item you are going to store in it.

share|improve this answer

Use LinkedHashSet if you don't want duplicate items inserted.

share|improve this answer
And it also preserves insertion order download.oracle.com/javase/6/docs/api/java/util/… – crowne Aug 21 '10 at 15:48

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.