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 ...
7
votes
5answers
674 views
C++: is the unordered_map really unordered?
I am very confused by the name 'unordered_map'. The name suggests that the keys are not ordered at all. But I always thought they are ordered by their hash value. Or is that wrong (because the name ...
5
votes
3answers
398 views
Is there any thing hashmap can do but map cannot?
I only know that the difference between hashmap and map is that hashmap is implemented with hash function but map is implemented with tree. Could any body add anything more?
Based on this, is there ...
3
votes
3answers
157 views
ordered version of unordered_map?
In my following program I'm currently using unordered_map just because I wanted O(1) search/insert time. But now I wanted the items to be ordered. Sorting it every time is very inefficient. What are ...
2
votes
1answer
61 views
Errors with unordered_map in C++?
I was writing a program for a class using Visual C++ on my home computer, however, I tried to run it on school linux computers and I get these errors.
std::tr1::unordered_map <string, Word*> ...
2
votes
2answers
226 views
boost::unordered_map — Need to specify a custom hash function for hashing std::set<int>?
I'd like use boost::unordered_map<key,value>, where key is a std::set<int>. Since a set of integers is no built-in type, I assumed I had to supply my own hash function (or, rather, I was ...
1
vote
2answers
92 views
Can I insert objects into tr1 unordered_map
I have a large amount of data to process in c++ and find that unordered_map works effienct
However, there is no example to stores objects in unorderd_map. When I tried myself it fails to complie.
...
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
2answers
474 views
How can I use a custom type for keys in a boost::unordered_map?
I'm using Boost's implementation of a hash map in a project right now, and I'm trying to implement a custom type for keys. I have four unsigned integers which I'd like to combine into a single 128-bit ...
0
votes
4answers
579 views
Why is std::tr1::unordered_map slower than a homegrown hash map?
I wrote a basic program that takes strings and counts the incidences of unique ones by inserting them into a string->integer hash map.
I use std::tr1::unordered_map for the storage, templated for a ...
0
votes
2answers
248 views
Handling Deprecated Includes With Autoconf
I have been using ext::hash_map in a C++ project and notice that in g++ 4.3 it is deprecated in favor of unordered_map. I need to maintain compatibility with old systems that do not have ...