Tagged Questions

7
votes
4answers
3k views

Hash function for a pair of long long?

I need to map a pair of long long to a double, but I'm not sure what hash function to use. Each pair may consist of any two numbers, although in practice they will usually be numbers between 0 and ...
5
votes
3answers
153 views

How to specialize std::hash<Key>::operator() for user-defined type in unordered containers?

To support user-defined key types in std::unordered_set<Key> and std::unordered_map<Key, Value> one has to provide operator==(Key, Key) and a hash functor: struct X { int id; /* ... */ }; ...
3
votes
4answers
142 views

C++ how to pass method as a template argument

Suppose I have a class X: class X { // ... size_t hash() const { return ...; } }; I would like to create a std::tr1::unordered_map<X, int, HashFn> where I want to pass in X::hash() as ...
3
votes
2answers
1k views

Defining a hash function in TR1 unordered_map inside a struct

According to this, it is possible to define an equality function in a TR1 unordered_map like this: #include <tr1/unordered_map> using namespace std; using namespace std::tr1; struct foo{ ...
2
votes
1answer
156 views

Custom Allocator in tr1's unordered_map

I have a few problems regarding a custom allocator for an unordered_map. I have a large dataset and I need to hash on a string as key. So I came to know that providing a custom memory allocator would ...
1
vote
3answers
110 views

How can I use a std::tr1::function object in a key to unordered_map?

I'm trying to form a std::tr1::unordered_map where the key type is a struct that includes a callback function, for which I'm using std::tr1::function. I'm running into two problems: 1) the function ...
1
vote
3answers
127 views

unordered_map insertion crawls to a halt

Basically, I have an unordered_map and trying to add to it sets of pairs... about 500,000 of them. I've noticed that as I add pairs the insertion speed gets slower and slower until it finally stops ...
1
vote
4answers
423 views

Unordered (hash) map from bitset to bitset on boost

I want to use a cache, implemented by boost's unordered_map, from a dynamic_bitset to a dynamic_bitset. The problem, of course, is that there is no default hash function from the bitset. It doesn't ...
1
vote
1answer
162 views

Using string* as a key in an unordered_set

I would like to put use a string* as a key in an unordered_list. I do not want the hash the pointer itself but the string it points to. I understand I need to create a struct like this: struct ...
1
vote
1answer
1k views

g++ linker error: Getting undefined reference error for std::hash

I'm using the unordered_map of TR1 implementation in my code and the linker gives weird errors I cannot even decipher: BPCFG.o: In function `std::__detail::_Hash_code_base<DottedRule, ...
0
votes
1answer
48 views

How do I use an existing hashed integer to index a hash table?

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 ...
0
votes
1answer
30 views

unorder_map<float, short> Why does this work?

I am using an unordered_map>float, unsigned short> to implement a hash table in C++. I know that using floats as keys to a hash table is a BAD idea under most circumstances because comparing them is ...