theultraman20

hll.rs

Mar 11th, 2025 (edited)
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Rust 0.81 KB | None | 0 0
  1. use std::hash::*;
  2. use std::marker::PhantomData;
  3.  
  4. //Lazy hyper log log implementation
  5. pub struct HyperLogLog<const N: usize, T: Hash> {
  6.     regs: [u64; N],
  7.     //enforce homogenuiy
  8.     //no homo...
  9.     phantom: PhantomData<T>,
  10. }
  11.  
  12. impl<const N: usize, T: Hash> HyperLogLog<N, T> {
  13.  
  14.     pub fn cardinality(&self) -> u64 {
  15.         //get harmonic mean
  16.         let mut sum = 0.0;
  17.  
  18.         for reg in self.regs.iter() {
  19.             sum += 1.0 / (1 << reg.leading_zeros()) as f64;
  20.         }
  21.  
  22.         let mean = N as f64 / sum;
  23.         u64::pow(2, N as u32 * mean as u32)
  24.     }
  25.  
  26.     pub fn add(&mut self, elem: &T) {
  27.             //hash the result in it's respective register
  28.             let mut hasher = DefaultHasher::new();
  29.             elem.hash(&mut hasher);
  30.             let hash = hasher.finish();
  31.     }
  32. }
  33.  
Add Comment
Please, Sign In to add comment