Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I was looking through some of the .net source yesterday and saw several implementations of GetHashcode with something along the lines of this:

(i1 << 5) + i ^ i2

I understand what the code is doing and why. What I want to know is why they used (i1 << 5) + i instead of (i1 << 5) - i.

Most frameworks I've seen use -i because that's equivalent to multiplying by 31 which is prime, but the Microsoft way is equivalent to multiplying by 33 which has 11 and 3 as factors and thus isn't prime.

Is there a known justification for this? Any reasonable hypotheses?

share|improve this question
1  
Okay, I found out why Microsoft uses 33. That's called the Bernstein Hash. It turns out that 33 has some magical properties that produce a good distribution of hash codes and there's very little theoretical knowledge as to why. – D. Patrick Aug 26 '11 at 2:18

2 Answers

up vote 2 down vote accepted

I asked the same question on math.stackexchange.com: Curious Properties of 33.

The conjecture among mathematicians and the research I did on the topic leads me to believe that the answer is this:

Okay, I found out why Microsoft uses 33. That's called the Bernstein Hash. It turns out that 33 has some magical properties that produce a good distribution of hash codes and there's very little theoretical knowledge as to why.

Basically, in entropy and speed comparisons, Bernstein does well enough and is quite snappy. Dan Bernstein, the guy who came up with the constant 33, wasn't able to explain what property of 33 produced such a good distribution of hashes.

Several papers have been written comparing hash functions and have corroborated this finding without further explaining the benefit of using 33. Further, I couldn't find why Java uses 31 instead. It appears to be a mathematical and programming mystery to date.

share|improve this answer

I don't remember if 31 is one of those primes, but there are certain primes which get used as capacities by Dictionary<K,V>. And if you use the left field doesn't influence the chosen bucket anymore and the hash degenerates.

share|improve this answer
31 doesn't appear to be in the primes list for bucket counts (looking at System.Collections.HashHelpers.primes), but that wasn't my question in the first place. My question is, why is Microsoft multiplying by 33 instead of by 31? Other frameworks I've seen multiply by 31. 33 isn't even prime. – D. Patrick Aug 10 '11 at 18:28
If 31 appeared in that list then that would explain why MS doesn't use 31 as multiplicator. But being prime isn't all that important anyways. – CodesInChaos Aug 10 '11 at 19:36

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.