https://github.com/bp7968h/rust_dsa
Data Structure and Algorithm written in Rust
https://github.com/bp7968h/rust_dsa
algorithms data-structures rust rust-lang search-algorithm sorting-algorithms
Last synced: 4 months ago
JSON representation
Data Structure and Algorithm written in Rust
- Host: GitHub
- URL: https://github.com/bp7968h/rust_dsa
- Owner: bp7968h
- Created: 2024-07-12T20:53:27.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-11T22:36:02.000Z (about 1 year ago)
- Last Synced: 2025-03-04T12:45:59.664Z (about 1 year ago)
- Topics: algorithms, data-structures, rust, rust-lang, search-algorithm, sorting-algorithms
- Language: Rust
- Homepage:
- Size: 37.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Data Structure and Algorithms in Rust
Welcome to my Data Structures and Algorithms repository, where I've implemented various data structures and algorithms
in the Rust programming language. This repository is a part of my journey to become a better developer, and I hope it
can be helpful for others as well.
## Introduction
This repository contains implementations of common data structures and algorithms in Rust. Each algorithm is implemented
in a straightforward manner, with a focus on readability and understanding the core concepts.
## Implementation
Below are the data structure and algorithms which are currently implemented and this will continue on daily basis(that
my plan).
### `Sorting Algorithms`:
- **Bubble Sort**
- **Selection Sort**
- **Insertion Sort**
- **Quick Sort**
- **Counting Sort**
- **Radix Sort**
- **Merge Sort**
### `Searching Algorithms`:
- **Linear Search**
- **Binary Search**
### `Data Structure`:
- **Singly Linked List**
- **Stack (Contiguous Memory)**
- **Stack (Non-Contiguous Memory)**
- **Queue**
- **Hash Table**
## `To be Continued`