7 unstable releases

0.4.1 Jun 13, 2022
0.4.0 Apr 7, 2021
0.3.0 Jan 16, 2021
0.2.2 Sep 23, 2020
0.1.0 Apr 16, 2020

#386 in Algorithms

Download history 647/week @ 2023-12-12 590/week @ 2023-12-19 145/week @ 2023-12-26 781/week @ 2024-01-02 797/week @ 2024-01-09 741/week @ 2024-01-16 1035/week @ 2024-01-23 1084/week @ 2024-01-30 1080/week @ 2024-02-06 1244/week @ 2024-02-13 1129/week @ 2024-02-20 793/week @ 2024-02-27 918/week @ 2024-03-05 1040/week @ 2024-03-12 1002/week @ 2024-03-19 289/week @ 2024-03-26

3,393 downloads per month
Used in 2 crates

MIT license

185KB
6K SLoC

HyperLogLog

Build status Crates.io Documentation

HyperLogLog is a probabilistic algorithm for estimating the number of distinct elements (cardinality) of a multiset. Several variations of the original algorithm, described by P. Flajolet et al., have been proposed.

The following implementations are provided:

Usage

Add to Cargo.toml:

[dependencies]
hyperloglogplus = "*"

With Rust compiler version 1.45.0 or higher consider enabling the const-loop feature for better performance, see here for more details.

[dependencies]
hyperloglogplus = { version = "*", features = ["const-loop"] }

A simple example using HyperLogLog++ implementation:

use std::collections::hash_map::RandomState;
use hyperloglogplus::{HyperLogLog, HyperLogLogPlus};

let mut hllp: HyperLogLogPlus<u32, _> =
    HyperLogLogPlus::new(16, RandomState::new()).unwrap();

hllp.insert(&12345);
hllp.insert(&23456);

assert_eq!(hllp.count().trunc() as u32, 2);

Evaluation

Here you can find figures and discussion on experimental evaluation.

Dependencies

~0.4–1MB
~23K SLoC