我正在尝试实现Fowler–Noll–Vo 哈希函数
伪代码看起来像这样
hash = FNV_offset_basis
for each byte_of_data to be hashed
hash = hash × FNV_prime
hash = hash XOR byte_of_data
return hash
这是我的代码
uint8_t byte_of_data;
uint16_t hash;
uint16_t FNV_offset_basis;
uint16_t FNV_prime;
void computeHash(std::string p)
{
FNV_offset_basis = 0xcbf29ce484222325;
FNV_prime = 0x100000001b3;
hash = FNV_offset_basis;
//Iterate through the string
for(int i=0 ; i<p.size();i++)
{
hash = hash * FNV_prime;
hash = hash ^ p.at(i);
}
std::cout << hash; //output 2983
std::cout << std::hex << hash ; //ba7
}
现在我正在使用它
int main()
{
computeHash("Hello");
}
我在这里测试我的结果 ,我得到的结果是0d47307150c412cf
更新:
我将我的类型固定为
uint8_t byte_of_data;
uint64_t hash;
uint64_t FNV_offset_basis;
uint64_t FNV_prime;
我得到的结果 fa365282a44c0ba7 仍然不匹配结果 0d47307150c412cf
关于如何解决此问题的任何建议