├── BenchRedisHLL.c ├── Benchwyhll.c ├── LICENSE ├── README.md ├── hyperloglog.c ├── hyperloglog.h ├── makefile ├── wyhash.h ├── wyhll.h └── wyhll.png /BenchRedisHLL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyi-fudan/wyHLL/HEAD/BenchRedisHLL.c -------------------------------------------------------------------------------- /Benchwyhll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyi-fudan/wyHLL/HEAD/Benchwyhll.c -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyi-fudan/wyHLL/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # wyHLL: WangYi's 3-bits HyperLogLog 2 | 3 | ![](wyhll.png) 4 | -------------------------------------------------------------------------------- /hyperloglog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyi-fudan/wyHLL/HEAD/hyperloglog.c -------------------------------------------------------------------------------- /hyperloglog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyi-fudan/wyHLL/HEAD/hyperloglog.h -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyi-fudan/wyHLL/HEAD/makefile -------------------------------------------------------------------------------- /wyhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyi-fudan/wyHLL/HEAD/wyhash.h -------------------------------------------------------------------------------- /wyhll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyi-fudan/wyHLL/HEAD/wyhll.h -------------------------------------------------------------------------------- /wyhll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyi-fudan/wyHLL/HEAD/wyhll.png --------------------------------------------------------------------------------