15个版本 (3个稳定版)

1.0.2 2022年6月6日
1.0.0 2020年12月21日
0.0.12 2019年11月12日
0.0.11 2017年1月24日
0.0.1 2014年11月26日

#464 in 算法

Download history • Rust 包仓库 117/week @ 2024-03-13 • Rust 包仓库 138/week @ 2024-03-20 • Rust 包仓库 211/week @ 2024-03-27 • Rust 包仓库 200/week @ 2024-04-03 • Rust 包仓库 198/week @ 2024-04-10 • Rust 包仓库 254/week @ 2024-04-17 • Rust 包仓库 258/week @ 2024-04-24 • Rust 包仓库 306/week @ 2024-05-01 • Rust 包仓库 317/week @ 2024-05-08 • Rust 包仓库 294/week @ 2024-05-15 • Rust 包仓库 253/week @ 2024-05-22 • Rust 包仓库 311/week @ 2024-05-29 • Rust 包仓库 354/week @ 2024-06-05 • Rust 包仓库 284/week @ 2024-06-12 • Rust 包仓库 223/week @ 2024-06-19 • Rust 包仓库 126/week @ 2024-06-26 • Rust 包仓库

1,081 每月下载量
用于 基数估计器

ISC 许可证

115KB
4K SLoC

hyperloglog

Rust中的HyperLogLog实现,具有偏差校正。

安装:使用 Cargo

[dependencies]
hyperloglog = "0"

使用方法

let mut hll = HyperLogLog::new(error_rate);
hll.insert(&"test1");
hll.insert(&"test2");
let card_estimation = hll.len();

let mut hll2 = HyperLogLog::new_from_template(&hll);
hll2.insert(&"test3");

hll.merge(&hll2);

可选Cargo特性

  • with_serde:启用通过 serde 进行序列化。

lib.rs:

Rust的HyperLogLog实现

依赖项

~335–580KB
~11K SLoC