https://github.com/dragonxdev/data-structures
A collection of data structures and algorithms I have designed from scratch for practice
https://github.com/dragonxdev/data-structures
Last synced: about 1 year ago
JSON representation
A collection of data structures and algorithms I have designed from scratch for practice
- Host: GitHub
- URL: https://github.com/dragonxdev/data-structures
- Owner: DragonXDev
- Created: 2025-03-16T17:57:04.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-16T18:15:01.000Z (about 1 year ago)
- Last Synced: 2025-03-16T19:32:58.172Z (about 1 year ago)
- Language: Java
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Data Structures and Algorithms Repository
This repository contains my implementations of various data structures and algorithms in Java. Its a resource for learning and understanding fundamental concepts in data structures and algorithms, + complete code for the ***DSA(H) class @ VCS***.
## Topics Covered
The repository includes implementations of:
- Arrays and Linked Lists
- Stacks and Queues
- HashMaps and HashSets
- Trees (Binary Trees, BSTs, Heaps)
- Graphs (BFS, DFS, etc.)
- Sorting Algorithms
- Dynamic Programming
## How to Use
To get started, clone the repository using:
```bash
git clone https://github.com/dragonxdev/data-structures.git
```
Then, navigate to the repository:
```bash
cd data-structures
```
Each topic has its own directory with Java files. You can compile and run any file using:
```bash
javac FileName.java
java FileName
```
Feel free to explore, modify, and contribute! 🚀