This repository contains implementations of various data structures using Python. The goal is to learn, practice, and demonstrate the functionality of these fundamental structures for algorithms and computer science.
- Stack
- Set
- Queue
- Linked List
- Trees
- Hash Tables
- Graphs
- Python 3.x installed
git clone https://github.com/Smeltier/data-structures-python.git
cd data-structures-python
from stack import Stack
stack = Stack()
stack.push(10)
stack.push(20)
print(stack.pop()) # Output: 20
This project is licensed under the MIT License. See the LICENSE file for more details.
Maintainer: Smeltier