algo_sorting

Crates.ioalgo_sorting
lib.rsalgo_sorting
version0.0.2
sourcesrc
created_at2022-03-25 06:08:04.710258
updated_at2022-03-25 06:15:24.734834
descriptionThis is a crate to implement all kind of sorting in the world of algorithms and more sorting methods will be implemented soon...
homepage
repository
max_upload_size
id556076
size2,410
Dev Chaudhary (DevChaudhary78)

documentation

README

A Rust library crate to sort any array using multiple algorithm methods available in DSA

Usage: [dependencies] algo_sorting = "0.0.1"

use algo_sorting;
let mut arr = vec![3, 1, 2, 4, 6, 5];

let sorted = algo_sorting::bubble(&mut arr);

assert!(sorted, vec![1, 2, 3, 4, 5, 6]);
Commit count: 0

cargo fmt