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

#387 in Algorithms

Download history 675/week @ 2024-01-11 813/week @ 2024-01-18 1092/week @ 2024-01-25 1182/week @ 2024-02-01 1114/week @ 2024-02-08 1026/week @ 2024-02-15 1201/week @ 2024-02-22 708/week @ 2024-02-29 1037/week @ 2024-03-07 1022/week @ 2024-03-14 773/week @ 2024-03-21 481/week @ 2024-03-28 938/week @ 2024-04-04 1050/week @ 2024-04-11 1086/week @ 2024-04-18 529/week @ 2024-04-25

3,747 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
~24K SLoC