Skip to content

nedseb/HyperLogLog

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 

Repository files navigation

HyperLogLog

A Simple Implementation of HyperLogLog Algorithm. HyperLogLog is an algorithm for estimating the cardinality of a multiset with a memory complexity in O(log(log(n))). The HyperLogLog strategy has several nice properties:

  1. It is near-optimal in its estimation ability
  2. allows you some coarse tuning on the amount of standard error you can tolerate
  3. The data structures that are used for the estimation are fast, easily compressed and stored, and can be recombined to provide estimates of both the union and intersection of multiple sets

About

A Simple Implementation of HyperLogLog Algorithm

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages