diff --git a/README.md b/README.md new file mode 100644 index 0000000..fd59402 --- /dev/null +++ b/README.md @@ -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.