Bitmap

最开始接触 bitmap 是在《编程珠玑》这本书上,书中所述的方法有点简单粗暴,不过思想倒是挺好——从信息论的角度来解释就是信息压缩了。即将原来32位表示一个 int 变为一位表示一个 int. 从空间的角度来说就是巨大的节省了(1/32)。可能的应用有大数据排序/查找(非负整数)。核心思想为根据最大非负整数确定位数,对应的位依次排序。

C++ 中有bitset容器,其他语言可用类似方法实现。

Implementation

C

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. /*
  4. * @param bits: uint array, i: num i of original array
  5. */
  6. void setbit(unsigned int *bits, unsigned int i, int BIT_LEN)
  7. {
  8. bits[i / BIT_LEN] |= 1 << (i % BIT_LEN);
  9. }
  10. /*
  11. * @param bits: uint array, i: num i of original array
  12. */
  13. int testbit(unsigned int *bits, unsigned int i, int BIT_LEN)
  14. {
  15. return bits[i / BIT_LEN] & (1 << (i % BIT_LEN));
  16. }
  17. int main(int argc, char *argv[])
  18. {
  19. const int BIT_LEN = sizeof(int) * 8;
  20. const unsigned int N = 1 << (BIT_LEN - 1);
  21. unsigned int *bits = (unsigned int *)calloc(N / BIT_LEN, sizeof(int));
  22. for (unsigned int i = 0; i < N; i++) {
  23. if (i % 10000001 == 0) setbit(bits, i, BIT_LEN);
  24. }
  25. for (unsigned int i = 0; i < N; i++) {
  26. if (testbit(bits, i, BIT_LEN) != 0) printf("i = %u exists.\n", i);
  27. }
  28. free(bits);
  29. bits = NULL;
  30. return 0;
  31. }

源码分析

核心为两个函数方法的使用,setbit用于将非负整数i置于指定的位。可用分区分位的方式来理解位图排序的思想,即将非负整数i放到它应该在的位置。比如16,其可以位于第一个 int 型的第17位,具体实现即将第17位置一,细节见上面代码。测试某个数是否存在于位图中也可以采用类似方法。