MurmurHash - what is it?

前端 未结 2 887
我寻月下人不归
我寻月下人不归 2020-12-04 05:54

I\'ve been trying to get a high level understanding of what MurmurHash does.

I\'ve read a basic description but have yet to find a good explanation of when to use i

2条回答
  •  难免孤独
    2020-12-04 06:15

    MurmurHash can be return negtive value, original value bit AND against 0x7fffffff。that is value & 0x7fffffff .When the input is positive, the original value is returned. When the input number is negative, the returned positive value is the original value bit AND against 0x7fffffff which is not its absolutely value. note:MurmurHash's return value can not be fix length.

提交回复
热议问题