Skip to content

Commit fa62836

Browse files
authored
Update README.md
1 parent 871a331 commit fa62836

File tree

1 file changed

+42
-2
lines changed

1 file changed

+42
-2
lines changed

README.md

Lines changed: 42 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,42 @@
1-
# data-structures-python
2-
A repository with implementations of common data structures in Python.
1+
---
2+
3+
# Implementing Data Structures in Python
4+
5+
![Python](https://img.shields.io/badge/Python-3.x-blue)
6+
7+
## About
8+
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.
9+
10+
## Implemented Structures
11+
12+
- [ ] Stack
13+
- [ ] Queue
14+
- [ ] Linked List
15+
- [ ] Trees
16+
- [ ] Hash Tables
17+
- [ ] Graphs
18+
19+
## How to Use
20+
21+
### Prerequisites
22+
- Python 3.x installed
23+
24+
### Clone the Repository
25+
```bash
26+
git clone https://github.com/Smeltier/data-structures-python.git
27+
cd data-structures-python
28+
```
29+
30+
### Running an Example
31+
```python
32+
from stack import Stack
33+
34+
stack = Stack()
35+
stack.push(10)
36+
stack.push(20)
37+
print(stack.pop()) # Output: 20
38+
```
39+
40+
---
41+
42+
**Maintainer:** [Smeltier](https://github.com/Smeltier)

0 commit comments

Comments
 (0)