A curated collection of Data Structures and Algorithms implemented in Rust, focused on clarity, correctness, and performance.

initial commit

+1
.gitignore
··· 1 + /target
+7
Cargo.lock
··· 1 + # This file is automatically @generated by Cargo. 2 + # It is not intended for manual editing. 3 + version = 4 4 + 5 + [[package]] 6 + name = "dsa" 7 + version = "0.1.0"
+6
Cargo.toml
··· 1 + [package] 2 + name = "dsa" 3 + version = "0.1.0" 4 + edition = "2024" 5 + 6 + [dependencies]
+9
README.md
··· 1 + # Rust Data Structures & Algorithms (DSA) 2 + 3 + A curated collection of **Data Structures and Algorithms implemented in Rust**, focused on **clarity, correctness, and performance**. 4 + 5 + This repository is intended for: 6 + - Learning Rust through practical problem solving 7 + - Understanding classic DSA concepts 8 + - Preparing for coding interviews 9 + - Practicing idiomatic and safe Rust
+3
src/main.rs
··· 1 + fn main() { 2 + println!("Hello Rust") 3 + }