Files
udemy_data_structures/README.md

13 lines
734 B
Markdown
Raw Permalink Normal View History

2019-05-02 19:16:40 -07:00
## Python Data Structures
### Udemy Course
This repository holds all the supporting files for my Python Data Structures A to Z course, including all the presentations in PDF format, and all the code in Jupyter Notebooks. These resources are available under the MIT license.
This course covers the following topics:
**Section 1:** Intro, Python native data structures, String, List, Tuple, Set, Dictionary.
**Section 2:** Stacks, Queues and Heaps.
**Section 3:** Linked Lists, Circular Linked Lists, Doubly Linked Lists.
**Section 4:** Binary Search Trees.
**Section 5:** Graphs.
Each section (2-5) explains how the data structure works, key methods, use cases, and walks through how to implement it in Python 3 code.