Various Data Structures made in Python
- Stack and Queue made using a singly and doubly linked list respectively. Located in the Project1 folder.
- Min Heap made from scratch. Located in the Project2 folder.
- Binary Search Tree made from scratch. Located in the Project3 folder.
- Red-Black Tree made using the binary search tree in Project3. RBT is located in Project4 Folder.