Skip to content

Commit 2fb2e18

Browse files
committed
updated README
1 parent 3b3e15c commit 2fb2e18

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

README.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,24 @@
11
# python-data-structures
22
This repository contains the code associated with the "Designing Data Structures in Python: Principles & Practice" Safari Video
3+
4+
The order of the videos in the final short course is listed below
5+
6+
1. Fundamentals
7+
2. Ubiquitous Lists
8+
3. Pointer Structures
9+
4. Recursive Structures
10+
5. Heap-based Structures
11+
6. Graph Representation
12+
7. Spatial Data Structures
13+
14+
The first model sets the foundation for the course, presenting a brief
15+
synopsis of the Python built-in types and time complexity analysis. Module
16+
two describes the strengths and weaknesses of Python's list type.
17+
18+
The remaining modules introduce different data types, such as Stacks,
19+
Queues, Linked Lists, Circular Buffer, Binary Search Tree, Balanced Binary
20+
Search Tree, Heaps, Binary Heaps, KD-Trees, and Quad Trees.
21+
22+
Each module presents fundamental data structures and provides code examples
23+
demonstrating their applciation and performance. All data types are
24+
provided with sample code and unit tests.

0 commit comments

Comments
 (0)