create readme file

This commit is contained in:
Joe James
2019-05-02 19:16:40 -07:00
committed by GitHub
parent 7f2424ce24
commit 0c191fe4aa

12
README.md Normal file
View File

@@ -0,0 +1,12 @@
## 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.