Data Structures

The Java Collections API in java.util provides lots of data structures. This API gives you access to reusable data structures that have been tested and work, rather than risking creating them yourself. One commonly used structure is the ArrayList which is an ordered list that can shrink and grow.

More

Read more in Chapters 6, 14, 15, and 16 of Absolute Java by Walter Savitch.
Top