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.

Possible Duplicate:
Rule of thumb for choosing an implementation of a Java Collection?

I am looking for a 'Summary' list of all the Java collections detailing the pros and cons of each. I am particularly interested in things like

  • Which provide faster iteration
  • Which provide faster search
  • Which provide slower iteration
  • Which provide faster insertion or removal

I have seen some sites by searching on Google but i am looking for just a summary preferable in table format.

Thanks in advance.

share|improve this question

marked as duplicate by Tomasz Nurkiewicz, Ted Hopp, Etienne de Martel, Brian Roach, dmeister Dec 4 '11 at 18:42

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 1 down vote accepted

Take a look at the Collections tutorial, particularly the section on implementations, which includes (in subsections) a discussion of performance characteristics for the various predefined classes. The collections framework is so large, I think, that it would be difficult to summarize everything in a single table.

share|improve this answer

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