All Projects → jonhoo → Orst

jonhoo / Orst

Licence: other
Sorting algorithms in Rust

Programming Languages

rust
11053 projects

Implementation of various sorting algorithms in Rust from this live stream.

To benchmark and plot (you'll need R and ggplot2):

$ cargo r --release > values.dat
$ R
t <- read.table('values.dat', header=TRUE)
library(ggplot2)
# to plot # comparisons
ggplot(t, aes(n, comparisons, colour = algorithm)) + geom_point() + scale_y_log10()
# to plot runtime
ggplot(t, aes(n, time, colour = algorithm)) + geom_point() + scale_y_log10()
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].