08 2021 档案

摘要:#include <stdio.h> #include <stdlib.h> void set_bitmap(char* b, unsigned int i) { b[i / 8] |= 1 << (i & 7); } void unset_bitmap(char* b, unsigned int 阅读全文
posted @ 2021-08-31 00:23 SteveYu 阅读(73) 评论(0) 推荐(0)
摘要:cse.yorku.ca/~oz/hash.html 阅读全文
posted @ 2021-08-30 23:26 SteveYu 阅读(108) 评论(0) 推荐(0)