c++ hash function for an int array
I need to specialize the hash 开发者_如何学Cfunction for unordered_map
so I can use int arrays as keys. The array values are usually 0 or 1, e.g. int array = {0, 1, 0, 1}
, but technically not bounded.
Can someone recommend a good hash function in this case? Alternatively, I can always convert the int array into a string and avoid specialization. But I am concerned about performance since I may have several million of these arrays.
C++ TR1 contains a hash template function.
If you don't have that yet, you can use Boost Hash.
Idea for a handy helper:
#include <boost/functional/hash.hpp>
template <typename T, int N>
static std::size_t hasharray(const T (&arr)[N])
{
return boost::hash_range(arr, arr+N);
}
This would be (roughly?) equivalent to
size_t seed = 0;
for (const T* it=arr; it!=(arr+N); ++it)
boost::hash_combine(seed, *it);
return seed;
Don't forget to implement proper equality comparison operations if you're using this hash for lookup
Try to use lookup8 hash function. This function is VERY fast and good.
int key[100];
int key_size=10;
for (int i=0;i<key_size;i++) key[i]=i; //fill key with sample data
ub8 hash=hash((ub8*)key, sizeof(key[0])*key_size, 0);
UPD: Or use better function. - t1ha
精彩评论