Course 2 of 6 in the Data Structures and Algorithms Specialization
In this course, we consider the common data structures that are used in various computational problems. You will learn how these data structures are implemented in different programming languages and will practice implementing them in our programming assignments. This will help you to understand what is going on inside a particular built-in implementation of a data structure and what to expect from it. You will also learn typical use cases for these data structures.
- Basic Data Structures
- Dynamic Arrays and Amortized Analysis
- Priority Queues and Disjoint Sets
- Hash Tables
- Binary Search Trees
- Binary Search Trees 2