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
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.