Tagged Questions

9
votes
1answer
2k views

Difference between hash_map and unordered_map?

I recently discovered that the implementation of the hash map in c++ will be called unordered_map. When I looked up why they weren't just using hash_map, I discovered that apparently there are ...
6
votes
4answers
578 views

Why would map be much faster than unordered_map?

I implemented a search caching results that consist of keys of type State (a class with 7 short ints) and values of type Socre (a class of 3 doubles.) Using unordered_map was at least 20 times slower ...
4
votes
2answers
232 views

Why can't I replace std::map with std::unordered_map

This question might be a bit sketchy because I do not have the code available at home, but I know this thing otherwise will bug me the whole weekend. When I tried to update some code to C++11 I began ...
2
votes
4answers
163 views

Using an unordered_map where Key is a member of T

Is there any nice way to use an unordered_map so that you can access objects by a member variable in constant time (average case)? The following example has this functionality but requires the name of ...
1
vote
1answer
238 views

Accessing the intrinsic type hash functions for tr1/unordered_map

I'm messing around with the unordered_map class template, and I'd like to write a custom hasher for my class. The documentation for it mentions that default hashing functions are provided for the ...
1
vote
5answers
563 views

C++ STL unordered_map iterator problem

class Demo { struct FileData { int size; BYTE* buffer; DWORD flags; }; typedef std::tr1::unordered_map<std::wstring,FileData> FileMap; FileMap m_fileMap; ...
1
vote
1answer
804 views

Whats the syntax to use boost::pool_allocator with boost::unordered_map?

I'm just experimenting with boost::pool to see if its a faster allocator for stuff I am working with, but I can't figure out how to use it with boost::unordered_map: Here is a code snippet: ...
0
votes
2answers
113 views

std::unordered_map and duplicate keys

I'm using an stl unordered_map, and I can't seem to get the count method to work. This is my program: typedef unordered_map<char, int> Mymap; int main() { Mymap m; ...
-1
votes
5answers
124 views

how to adapt an unordered STL container to store only Values of a Key-Value pair?

The new C++11 standard has unordered containers. In particular, the std::unordered_map<Key, Value> stores a std::pair<Key, Value> in a location based on std::hash<Key> (default hash ...