up vote 19 down vote favorite
7
share [g+] share [fb]

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++.

link|improve this question
please add keywords: hash algorithm unique low-collision – slashmais Sep 24 '08 at 10:31
17  
The following page has several implementations of general purpose hash functions which are "performant" and have low "collision rates": partow.net/programming/hashfunctions/index.html – Matthieu N. Oct 31 '10 at 23:08
feedback

12 Answers

up vote 14 down vote accepted

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

link|improve this answer
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 '09 at 3:38
5  
@Steven: MurmurHash hash has only been analzyed by its author. I've used it in a few different scenarios and the newer version of FNV seems to do a better job. – Matthieu N. Jan 25 '11 at 22:03
@sonicoder: While I'm not going to oversell MurmurHash, plain FNV is downright terrible and FNV-1a is only passable. As it happens, MurmurHash has been extensively analyzed and found useful. It's still not a cryptographic hash and there are going to be collisions no matter what, but it's still a huge improvement over any type of FNV. – Steven Sudit Jan 26 '11 at 20:50
5  
@Steven Sudit: As I said, it was analyzed "only" by its author and no one else. hence the results of the "analysis" aren't really objective. – Matthieu N. Jan 30 '11 at 12:07
1  
@sonicoder: I'll speak more bluntly: no, you're mistaken. It was analyzed by a number of third parties, including academic ones. Visit Wikipedia for links. What's more important is that, not only did it do well in general, but the specific flaws that were found were addressed through the creation of MurmurHash3. – Steven Sudit Feb 3 '11 at 7:25
show 1 more comment
feedback

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|improve this answer
A perfect hash is a very elegant solution, when available. – Steven Sudit Jan 27 '11 at 18:23
feedback

Murmur Hash is pretty nice.

link|improve this answer
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 '09 at 19:21
feedback

Have a look at GNU gperf.

link|improve this answer
Yay for perfect hash generators! – Chris Jester-Young Sep 22 '08 at 10:08
3  
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
feedback

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|improve this answer
feedback

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|improve this answer
Both STL and boost tr1 has extremely weak hash function for strings. – obecalp Feb 16 '09 at 19:19
feedback

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|improve this answer
feedback

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

link|improve this answer
5  
CRCs are designed for error detection and correction. Their distribution characteristics are typically not very good. – Nick Johnson Sep 22 '08 at 10:09
1  
Arachnid has obviously never tried CRC32 as hashes. They work well. – Nils Pipenbrinck Sep 22 '08 at 10:11
5  
"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 '09 at 21:24
feedback

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|improve this answer
feedback

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|improve this answer
feedback

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

link|improve this answer
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 '09 at 15:23
Bob's hashes are very fast: azillionmonkeys.com/qed/hash.html – sixlettervariables Jul 23 '09 at 20:20
feedback

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|improve this answer
feedback

Your Answer

 
or
required, but never shown

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