Skip to content

Blxckmage/rust-sort-algorithms

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Rust Sorting Algorithms

This is my personal project where I have implemented various sorting algorithms in the Rust programming language.

  • Bubble sort
  • Bucket sort
  • Heap sort
  • Insertion sort
  • Quick sort (unstable result, might fix later)
  • Selection sort
  • Merge sort

You can find the code for these algorithms in the src/sorting directory. I have also included a benchmark in src/main.rs, which you can run using cargo run.