An open API service indexing awesome lists of open source software.

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

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! 🚀