Skip to content

Instantly share code, notes, and snippets.

@kasajian
Last active August 29, 2015 14:01
Show Gist options
  • Save kasajian/21ae740446c5c60a8900 to your computer and use it in GitHub Desktop.
Save kasajian/21ae740446c5c60a8900 to your computer and use it in GitHub Desktop.
Brain Dead Hash Function
int
HashFunction(char *string, int size)
{
int hashkey = 1;
while (string[0])
{
hashkey = hashkey<<1^string[0];
string++;
}
return hashkey%size;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment