Skip to content

Files

Latest commit

b78128b · Jul 11, 2019

History

History

data-structures

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Mar 7, 2019
Apr 1, 2019
Apr 5, 2019
Apr 10, 2019
Jul 11, 2019

Data Structures

Course 2 of 6 in the Data Structures and Algorithms Specialization

About this course

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.

Syllabus

  1. Basic Data Structures
  2. Dynamic Arrays and Amortized Analysis
  3. Priority Queues and Disjoint Sets
  4. Hash Tables
  5. Binary Search Trees
  6. Binary Search Trees 2