1 个不稳定版本
0.1.0 | 2023年4月12日 |
---|
#2446 在 算法
4KB
72 行
buckets
buckets 是一个用于同时排序大量事物的 crate。
安装
将此添加到您的 Cargo.toml 中
[dependencies]
mean = "0.1"
用法
use buckets::SortWithBucket;
let mut input: Vec<u16> = vec![65444, 50, 12532, 121];
input.sort_with_buckets();
assert_eq!(input, vec![50, 121, 12532, 65444])
#![no_std]
稍后提供。
夜间
这是因为它被 generic_const_exprs
阻挡,因为我需要在 traits 的输出中使用的常量也定义在 traits 中。希望我能想出另一种方法来做这件事。
贡献
欢迎 pull request。对于重大更改,请先提出一个 issue 进行讨论。
请确保适当更新测试。