Does there exist a cheat sheet for data structure like TreeMap, SortedMap, HashSet etc and under what circumstances which one to use. Are there good articles you recommend
A:
Browsing through wikipedia's list of data structures will give some idea of how structures are used in general, and what the JDK has or hasn't got that's significant (Such as having linked hash set but not exposing what kind of tree the tree map is, and having a nice set of concurrent data structures).
Pete Kirkham
2009-01-26 09:26:14
A:
You will find a small "Java Collections Cheat Sheet" here.
The Sun Collections overview is still the most complete quick reference out there.
VonC
2009-01-26 09:38:17