I have a long list of English words and I would like to hash them. What would be a good hashing function? So far my hashing function sums the ASCII values of the letters then modulo the table size. I'm looking for something efficient and simple.

link|improve this question

1  
You've tagged this as both C++ and C. Which one do you want? – Michael Petrotta Oct 8 '11 at 23:23
@MichaelPetrotta either or is fine – Mike G Oct 8 '11 at 23:26
Check here cse.yorku.ca/~oz/hash.html – c-smile Oct 8 '11 at 23:30
feedback

3 Answers

up vote 7 down vote accepted

To simply sum the letters is not a good strategy because a permutation gives the same result.

This one (djb2) is quite popular and works nicely with ASCII strings.

hash(unsigned char *str)
{
    unsigned long hash = 5381;
    int c;

    while (c = *str++)
        hash = ((hash << 5) + hash) + c; /* hash * 33 + c */

    return hash;
}

If you need more alternatives and some perfomance measures, read here.

Added: These are general hashing functions, where the input domain is not known in advance (except perhaps some very general assumptions: eg the above works slightly better with ascii input), which is the most usual scenario. If you have a known restricted domain (set of inputs fixed) you can do better, see Fionn's answer.

link|improve this answer
5381 is the table size ? – Mike G Oct 8 '11 at 23:31
No, it's just a "seed", rather arbitrary. – leonbloy Oct 8 '11 at 23:32
1  
@MikeG: that is the "seed" or starting value. This one is commonly known as the "Times 33" hash. – sixlettervariables Oct 8 '11 at 23:32
@sixlettervariables where do i specifiy the table length ? what if it returns a number greater than my table ? – Mike G Oct 8 '11 at 23:35
2  
It can return any valid unsigned long value, in theory. It's up to you to manipulate the hash to suit your constraints. – Jonathan Grynspan Oct 8 '11 at 23:43
show 1 more comment
feedback

Maybe something like this would help you: http://www.gnu.org/s/gperf/

It generates a optimized hashing function for the input domain.

link|improve this answer
feedback

If you don't need it be cryptographically secure, I would suggest the Murmur Hash. It's extremely fast and has high diffusion. Easy to use.

http://en.wikipedia.org/wiki/MurmurHash

http://code.google.com/p/smhasher/wiki/MurmurHash3

If you do need a cryptographically secure hash, then I suggest SHA1 via OpenSSL.

http://www.openssl.org/docs/crypto/sha.html

link|improve this answer
+1 for MurmurHash, do you know if of a comparison between CityHash and MurmurHash ? I have heard good things about both, but never saw a comprehensive comparison, just had some anecdotical facts. – Matthieu M. Oct 9 '11 at 9:59
feedback

Your Answer

 
or
required, but never shown

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