Hello. I've developed a small and simple sorting algorithm and I need some help to test it out on different systems and your opinions on it too! The code can be found at: https://github.com/Shroomerian/double_sort
#Double-Sort Algorithm
13 messages · Page 1 of 1 (latest)
It's important to note that I've only tested it on Linux. It's got some simple tests you can run too.
I can do a full code review later today if you want
Hey, thank you for helping me. If you feel like it and don't have anything else to do it'll be lovely! 
Hello! I have successfully published my crate to crates.io! https://crates.io/crates/double_sort
I've also tested it on Windows and it runs at the same performance on average
Double-Sort Algorithm
Hello! I have updated my crate to version 1.10:
It now has a new function which uses the same concept to sort numbers but does so without BinaryHeaps
Hello. I have made a fork of https://github.com/Shroomerian/sorting-visualization which utilizes my double sort algorithm and visualizes it!
GitHub
A Rust program for visualizing sorting algorithms which uses Piston for graphics. Inspired by https://github.com/Hopson97/Sort-Algorithm-Visualiser - GitHub - Shroomerian/sorting-visualization: A R...
To test it use the following commands:
git clone https://github.com/Shroomerian/sorting-visualization
cd sorting-visualization
cargo build --release
cargo run --release double_sort
There's two branches of it. The main branch uses double_heap_sort which allows it to crunch 10000 numbers in less than a minute, and the other use double_sort, which does not use BinaryHeaps to figure out the references so it's slower and can't really handle 10000 numbers