1 Star 0 Fork 0

jimmy/mold

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
hyperloglog.cc 442 Bytes
一键复制 编辑 原始数据 按行查看 历史
Rui Ueyama 提交于 2022-01-16 11:09 . Refactor
// This file implements HyperLogLog algorithm, which estimates
// the number of unique items in a given multiset.
//
// For more info, read
// https://engineering.fb.com/2018/12/13/data-infrastructure/hyperloglog
#include "mold.h"
#include <cmath>
namespace mold {
i64 HyperLogLog::get_cardinality() const {
double z = 0;
for (i64 val : buckets)
z += pow(2, -val);
return ALPHA * NBUCKETS * NBUCKETS / z;
}
} // namespace mold
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/jimmylau/mold.git
git@gitee.com:jimmylau/mold.git
jimmylau
mold
mold
hppa32

搜索帮助