Learn Complex Data Structures
Offered By: Codecademy
Course Description
Overview
Discover and design new data structures that follow abstract rule-based systems by building out graphs, hash-maps, and heaps.
### Why Learn Complex Data Structures?
These data structures use a layer of abstraction to make specific operations much more straightforward. They're designed as solutions for problems that don't require linear iteration, but have more nuanced requirements.
### Take-Away Skills:
This course introduces the theory and implementation of abstract data structures. After this course, you'll be ready to solve advanced algorithmic problems like path-finding and maintaining priority queues.
### Notes on Prerequisites:
This course is a continuation of our Linear Data Structures syllabus, which introduces other data structures you might encounter. Since you'll be implementing these data structures in Python, we recommend you take our Python curriculum to become familiar with the language.
### Why Learn Complex Data Structures?
These data structures use a layer of abstraction to make specific operations much more straightforward. They're designed as solutions for problems that don't require linear iteration, but have more nuanced requirements.
### Take-Away Skills:
This course introduces the theory and implementation of abstract data structures. After this course, you'll be ready to solve advanced algorithmic problems like path-finding and maintaining priority queues.
### Notes on Prerequisites:
This course is a continuation of our Linear Data Structures syllabus, which introduces other data structures you might encounter. Since you'll be implementing these data structures in Python, we recommend you take our Python curriculum to become familiar with the language.
Syllabus
- Learn Hash Maps: Learn about hash maps, the efficient key-value storage used in many different programming languages, and then implement one yourself!
- Lesson: Hash Maps: Conceptual
- Quiz: Hash Maps: Conceptual
- Lesson: Hash Maps: Python
- Project: Blossom
- Learn Trees: Learn the tree data structure using Python and create an adventure game!
- Lesson: Trees: Conceptual
- Quiz: Trees: Conceptual
- Lesson: Trees: Python
- Quiz: Trees: Python
- Project: Choose Your Own Adventure: Wilderness Escape
- Learn Heaps: Learn the data structure of heaps using Python. A heap is a specialized type of tree with many applications.
- Lesson: Heaps: Conceptual
- Quiz: Heaps: Conceptual
- Lesson: Heaps: Python
- Quiz: Heaps: Python
- Learn Graphs: Learn the graphs data structure using Python. Graphs are the perfect data structure for modeling networks!
- Lesson: Graphs: Conceptual
- Quiz: Graphs: Conceptual
- Lesson: Graphs: Python
- Quiz: Graphs: Python
- Project: Maze Explorer
Taught by
Kenny Lin
Related Courses
Design of Computer ProgramsStanford University via Udacity Algorithms, Part I
Princeton University via Coursera Algorithms, Part II
Princeton University via Coursera Intro to Algorithms
Udacity Divide and Conquer, Sorting and Searching, and Randomized Algorithms
Stanford University via Coursera