Tagged Questions
21
votes
5answers
6k views
Is there any advantage of using map over unordered_map in case of trivial keys?
A recent talk about unordered_map in C++ made me realize, that I should use unordered_map for most cases where I used map before, because of the efficiency of lookup ( amortized O(1) vs. O(log n) ). ...
10
votes
4answers
152 views
Is NaN a valid key value for associative containers?
Consider the ordered and unordered associative containers in C++ keyed on double.
Is NaN a valid key type?
With ordered containers, I should say "no", because it does not respect the strict weak ...
6
votes
4answers
579 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 ...
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 ...
4
votes
2answers
95 views
Why is my unordered_map ordering itself?
So I was playing with the newly standardized unordered_map from the STL. The code I have is kinda like this, I just create an unordered_map, fill it up, and print it out:
...
4
votes
5answers
1k views
How to check for TR1 while compiling?
We are programming a logging library that keeps itself in a .hpp file. We would like to include <tr1/unordered_map> (if the compiler supports TR1,) or the standard <map> otherwise. Is ...
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 ...
3
votes
1answer
147 views
Inserting typedef map into a hash table
In the program below I've a typedef map. What I want to do is to implement a hash table. I'm trying to use unordered_map since I heard that is the efficient as it takes O(1) time. I use my typedef map ...
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 ...
0
votes
2answers
610 views
Help understanding segfault with std::map/boost::unordered_map
I have some code to handle resource (images, fonts, mesh data, etc.) management using a template'd static class, allowing client code to do something like:
...