I'm using Boost for C++ at the moment, and am trying to implement the unordered map (aka hash table) using CRC32. To my knowledge it will take a string as an initial key, hash it, and apply another operation so that it will fit into the number of buckets.

Though in my situation, I would like to hash the string key beforehand (using a separate CRC function in Boost), then use that ID to index the table. The problem that I need help with is that a CRC32 hash has 2^32 potential values, and I doubt I'll ever need a table with 2^32 elements. What should I do in this situation?

Thanks for any help here!

link|improve this question

1  
Boost already contains multiple unordered_map implementations, why are you writing one from scratch? – ildjarn Oct 29 '11 at 18:21
This is why the container will hash it again to fit inside the bucket space. Do you have a good reason to do this? Using a hash for error correction vs. for bucketing are two different uses... – Joe Oct 29 '11 at 18:21
Well I'm using the hash table in the debug build only, its supposed to retain the corresponding string IDs as game entity names. But in the release build I only want the IDs, since my game engine should only ever use those. That's my main motivation to using a separate hash function. – AutoBotAM Oct 29 '11 at 18:37
feedback

1 Answer

up vote 2 down vote accepted

Use the modulus operator -- % in the C-based languages:

int hashtableIndex = hashValue % hashtableSize;

But note that the sign of the result, in C++, is "implementation defined", and can be negative if hashValue is negative. So one may want to turn off the sign bit in hashValue before doing the % operation.

Also note that, if hashtableSize is known to be a power of two, one can simply mask hashValue to get the index:

int hashtableIndex = hashValue & (hashtableSize - 1);
link|improve this answer
1  
If hashtableSize is of unsigned type, there will be no problems with sign – anatolyg Oct 29 '11 at 18:38
Good ideas. But say I have 7 buckets/elements. If I were to use a modulus for that, then wouldn't the collision probability grow from 1/2^32 to 1/7? In that case would masking the hash value be more beneficial? – AutoBotAM Oct 29 '11 at 18:39
The collision probability for a 7 bucket table is always going to be (ideally) 1 in 7. And masking is just another way to do modulus -- exactly equivalent mathematically (aside from sign issues) -- but it only works for powers of two. – Hot Licks Oct 29 '11 at 18:47
1  
Note that even though you "narrow" the hash value to select a table slot, you can still stick the full hash value into your hash entries, to provide for a quick comparison. Only if the hash value matches the search hash value do you do the "long" compare of the "real" key value. This makes it efficient to put the "real" key value (eg, a string) in a separate location, possibly "shared" with some larger structure. – Hot Licks Oct 29 '11 at 19:04
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

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