algo_sorting 0.0.2

This is a crate to implement all kind of sorting in the world of algorithms and more sorting methods will be implemented soon...
Documentation
  • Coverage
  • 0%
    0 out of 1 items documented0 out of 0 items with examples
  • Size
  • Source code size: 2.09 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 91.94 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • DevChaudhary78

Usage: [dependencies] algo_sorting = "0.0.1"

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]);