double_sort 1.0.0

This is a fast and simple sorting algorithm which groups numbers into pairs and orders them onwards as nodes
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[package]
name = "double_sort"
version = "1.0.0"
edition = "2021"
license = "MIT"
description = "This is a fast and simple sorting algorithm which groups numbers into pairs and orders them onwards as nodes"
authors = ["Alexander Mychlo <alexmmych@gmail.com>"]
repository = "https://github.com/Shroomerian/double_sort"
readme = "README.md"
keywords = ["sorting","sort"]
categories = ["algorithms"]


# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dev-dependencies]
rand = "0.8.4"