Skip to content

The world's best and finest sorting algorithms, implemented in Rust.

License

Notifications You must be signed in to change notification settings

qtlis/sorting-rs

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

The world's best and finest sorting algorithms, implemented in Rust

Build Status docs.rs Crates.io

This crate only implements the most useless or inefficient sorting algorithms. You may use them in your production application, altough I would strongly advise against that. Currently, the following sorting algorithms are implemented:

If you feel like this list misses some fancy algorithm (which it surely does!), you can implement it and open a PR or open an issue. :)

Implementation & Usage

All algorithms are currently implemented as traits for any Vec<T> where T fulfills the trait PartialOrd. So in order to use these sorting alrogithms, you can just invoke them on the object of interest:

extern crate sorting;

use sorting::*;

let unsorted = vec![5, 7, 8, 2, 1, 0];
unsorted.panicsort();   // will panic

Using the respective traits you can always implement these methods for your own structures.

License

This work is licensed under the Mozilla Public License 2.0.

About

The world's best and finest sorting algorithms, implemented in Rust.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Rust 100.0%