Skip to content

Instantly share code, notes, and snippets.

@ngn999
Created May 16, 2011 12:33
Show Gist options
  • Save ngn999/974368 to your computer and use it in GitHub Desktop.
Save ngn999/974368 to your computer and use it in GitHub Desktop.
hash
p = reinterpret_cast<const unsigned char *>(szKey);
while (*p) {
res = (res << 7) + (res >> 25) + *p++;
}
// 相当于,res这个int32将前面8位移到后面去了, eg. 1101001xxxxxxxxxxxxx,就成了,xxxxxxxxxxxxx110100
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment