vote up 7 vote down star
2

I have lots of unrelated named things that I'd like to do quick searches against. An "aardvark" is always an "aardvark" everywhere, so hashing the string and reusing the integer would work well to speed up comparisons. The entire set of names is unknown (and changes over time). What is a fast string hashing algorithm that will generate small (32 or 16) bit values and have a low collision rate?

I'd like to see an optimized implementation specific to C/C++.

flag
please add keywords: hash algorithm unique low-collision – slashmais Sep 24 '08 at 10:31

12 Answers

vote up 8 vote down check

One of the FNV variants should meet your requirements. They're fast, and produce fairly evenly distributed outputs.

link|flag
If you're going to use FNV, stick to FNV-1a, since it has acceptable results on the avalanche test (see home.comcast.net/~bretm/hash/6.html). Or just use MurmurHash2, which is better in both speed and distribution (murmurhash.googlepages.com). – Steven Sudit Jul 10 at 3:38
vote up 1 vote down

There's also a nice article at eternallyconfuzzled.com.

Jenkins' One-at-a-Time hash for strings should look something like this:

#include <stdint.h>

uint32_t hash_string(const char * s)
{
    uint32_t hash = 0;

    for(; *s; ++s)
    {
    	hash += *s;
    	hash += (hash << 10);
    	hash ^= (hash >> 6);
    }

    hash += (hash << 3);
    hash ^= (hash >> 11);
    hash += (hash << 15);

    return hash;
}
link|flag
vote up 0 vote down

You can see what .NET uses on the String.GetHashCode() method using Reflector.

I would hazard a guess that Microsoft spent considerable time optimising this. They have printed in all the MSDN documentation too that it is subject to change all the time. So clearly it is on their "performance tweaking radar" ;-)

Would be pretty trivial to port to C++ too I would have thought.

link|flag
vote up 1 vote down

Bob Jenkins has many hash functions available, all of which are fast and have low collision rates.

link|flag
1  
The hashes are quite solid, and technically interesting, but not necessarily fast. Consider that One-at-a-Time hash processes input byte by byte, where other hashes take 4 or even 8 bytes at a time. The speed differnece is substantial! – Steven Sudit Jul 23 at 15:23
Bob's hashes are very fast: azillionmonkeys.com/qed/hash.html – sixlettervariables Jul 23 at 20:20
vote up 1 vote down

Why don't you just use Boost libraries? Their hashing function is simple to use and most of the stuff in Boost will soon be part of the C++ standard. Some of it already is.

Boost hash is as easy as

#include <boost/functional/hash.hpp>

int main()
{
    boost::hash<std::string> string_hash;

    std::size_t h = string_hash("Hash me");
}

You can find boost at boost.org

link|flag
Both STL and boost tr1 has extremely weak hash function for strings. – obecalp Feb 16 at 19:19
vote up 1 vote down

There is some good discussion in this previous question

And a nice overview of how to pick hash functions, as well as statistics about the distribution of several common ones here

link|flag
vote up 1 vote down

The Hsieh hash function is pretty good, and has some benchmarks/comparisons, as a general hash function in C. Depending on what you want (it's not completely obvious) you might want to consider something like cdb instead.

link|flag
vote up 3 vote down

Another solution that could be even better depending on your use-case is interned strings. This is how symbols work e.g. in Lisp.

An interned string is a string object whose value is the address of the actual string bytes. So you create an interned string object by checking in a global table: if the string is in there, you initialize the interned string to the address of that string. If not, you insert it, and then initialize your interned string.

This means that two interned strings built from the same string will have the same value, which is an address. So if N is the number of interned strings in your system, the characteristics are:

  • Slow construction (needs lookup and possibly memory allocation)
  • Requires global data and synchronization in the case of concurrent threads
  • Compare is O(1), because you're comparing addresses, not actual string bytes (this means sorting works well, but it won't be an alphabetic sort).

Cheers,

Carl

link|flag
vote up 7 vote down

Murmur Hash is pretty nice.

link|flag
3  
Yes, this is the current leading general purpose hash function for hash tables. It's non-crypto, of course, with a pair of obvious differential. – obecalp Feb 16 at 19:21
vote up 6 vote down

For a fixed string-set use gperf.

If your string-set changes you have to pick one hash function. That topic has been discussed before:

http://stackoverflow.com/questions/98153/

link|flag
vote up 0 vote down

CRC-32. There is about a trillion links on google for it.

link|flag
2  
CRCs are designed for error detection and correction. Their distribution characteristics are typically not very good. – Nick Johnson Sep 22 '08 at 10:09
Arachnid has obviously never tried CRC32 as hashes. They work well. – Nils Pipenbrinck Sep 22 '08 at 10:11
2  
"CRC32 was never intended for hash table use. There is really no good reason to use it for this purpose." cf. home.comcast.net/~bretm/hash/8.html – obecalp Feb 16 at 21:24
vote up 5 vote down

Have a look at GNU gperf.

link|flag
Yay for perfect hash generators! – Chris Jester-Young Sep 22 '08 at 10:08
1  
Perfect hashing is NOT appropriate for this application, since the set of names is unknown and changes. Therefore, gperf won't work for this. – TimB Sep 24 '08 at 4:43

Your Answer

Get an OpenID
or

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