What collections are
What the Collections framework is and its architecture
Different ways for traversing elements in a collection
Different types of collections such as List, Set, Queue, Map, etc.
Applying algorithms to collections
Obtaining different views of a collection
Creating empty and singleton collections
How hash-based collections work internally
All example programs in this chapter are members of a jdojo.collections module , as declared in Listing 12-1.
The ...