Tag: loglog

LogLog和HyperLogLogalgorithm来计算大基数

我在哪里可以findLogLogalgorithm的有效实现? 试图自己实现,但我的草案实施产生了奇怪的结果。 这里是: function LogLog(max_error, max_count) { function log2(x) { return Math.log(x) / Math.LN2; } var m = 1.30 / max_error; var k = Math.ceil(log2(m * m)); m = Math.pow(2, k); var k_comp = 32 – k; var l = log2(log2(max_count / m)); if (isNaN(l)) l = 1; else l = Math.ceil(l); var l_mask = […]