Java: Data Structures
47mIntermediate2023-11-13
Authors

Kevin Bowersox
Full-Stack Java Developer, Instructor
Course details
Data structures are used in almost all applications, so developers need to know what they are and how to use the most common ones. In this course, instructor Bethan Palmer explains what data structures in Java are and what you can do with some of the most common types. After giving some definitions, Bethan presents what you should consider when choosing a data structure, such as different levels of speed and performance. She shows you what arrays are and the pros and cons of using them, then walks you through how to create arrays and perform operations on them. Then Bethan dives into Java Collections, starting with the Collection interface. Most data structures in Java implement the Collection interface, so understanding what it is and how it works is key. Bethan goes over stacks, queues, and TreeSets, then concludes with a challenge and solution set exploring how to create and perform operations on some Java Collections.
Skills covered
JavaData EngineeringOracleProgramming LanguagesData ScienceSoftware DevelopmentDeep Dive (X:Y)
Concepts
0. Introduction
- 01 - Data structures in Java
- 02 - What you should know
- 03 - Using the exercise files
1. Java Data Structures
- 04 - What is a data structure
- 05 - How to choose a data structure
2. Using Arrays
- 06 - Understanding arrays
- 07 - Using arrays
- 08 - Challenge - Using arrays
- 09 - Solution - Using arrays
3. Java Collections
- 10 - The Collection interface
- 11 - LinkedLists
- 12 - Stacks
- 13 - Queues
- 14 - TreeSets
- 15 - Challenge - Using collections
- 16 - Solution - Using collections
Conclusion
- 17 - Next steps