phash.h

来自「一些经典的HASH函数及测试数据」· C头文件 代码 · 共 18 行

H
18
字号
/* Perfect hash definitions */#ifndef STANDARD#include "standard.h"#endif /* STANDARD */#ifndef PHASH#define PHASHextern ub1 tab[];#define PHASHLEN 0x20  /* length of hash mapping table */#define PHASHNKEYS 58  /* How many keys were hashed */#define PHASHRANGE 64  /* Range any input might map to */#define PHASHSALT 0x9e3779b9 /* internal, initialize normal hash */ub4 phash();#endif  /* PHASH */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?