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) ). ...
12
votes
4answers
386 views
Using The [] Operator Efficiently With C++ unordered_map
Firstly could someone clarify whether in C++ the use of the [] operator in conjunction with an unordered_map for lookups wraps a call to the find() method, or is using the [] operator quicker than ...
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 ...
10
votes
1answer
235 views
Mysterious behavior of unordered_map in Visual Studio
I want to store ~3,000,000 double values at unsigned int indices under VS2010 C++. I use a std::tr1:unordered_map<unsigned int, double> for this purpose. Unfortunately, when I try to store value ...
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 ...
8
votes
1answer
641 views
Replace vector and hash table with Boost.Bimap
I'm looking to replace a vector<string> and a boost::unordered_map<string, size_t> mapping string to indices in the former with a boost::bimap.
What instantiation of bimap should I use? ...
7
votes
5answers
675 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 ...
7
votes
1answer
1k views
Boost.Intrusive and unordered_map
I am looking to use an intrusive unordered_map. For some reason there is only an unordered_set in the library. There is also an intrusive hashtable but I'm not sure it has the same functunality, also ...
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 ...
6
votes
5answers
456 views
Miserable unordered_map insertion performance / hash function
I've been writing an image processing algorithm now, and at some point I needed to collect some statistical information about the transformed pixels to gain some more insight about the direction I ...
6
votes
3answers
378 views
Pre-allocating buckets in a C++ unordered_map
I'm using the unordered_map from gnu++0x to store a huge amount of data. I want to pre-allocate space for the large number of elements, since I can bound the total space used.
What I would like to be ...
6
votes
4answers
584 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 ...
6
votes
5answers
1k views
Building an unordered map with tuples as keys
In a C++ program with Boost, I am trying to build an unordered map whose keys are tuples of doubles:
typedef boost::tuples::tuple<double, double, double, double> Edge;
typedef ...
5
votes
3answers
154 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; /* ... */ };
...
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 ...
5
votes
3answers
1k views
Efficiency of iterators in unordered_map (C++)
I can't seem to find any information on this, so I turn to stackoverflow. How efficient are the iterators of std::tr1::unordered_map in C++? Especially compared to, say, list iterators. Would it ...
5
votes
5answers
818 views
Is it worth using std::tr1 in production?
I'm using MS VC 2008 and for some projects Intel C++ compiler 11.0. Is it worth using tr1 features in production? Will they stay in new standard?
For example, now I use stdext::hash_map. TR1 defines ...
4
votes
2answers
236 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 ...
4
votes
3answers
144 views
Efficiently erasing elements in tr1::unordered_map
I am experimenting with tr1::unordered_map and stumbled upon the problem how to
efficiently delete elements. The 'erase' method offers to delete either by key or
by iterator. I would assume the latter ...
4
votes
1answer
117 views
What bit hash function does unordered_map use?
What bit hash does unordered_map of C++0x use by default? std::hash function returns size_t. Does that mean unordered_map uses a 16 bit hash function?
4
votes
3answers
335 views
C++ some questions on boost::unordered_map & boost::hash
I've only recently started dwelling into boost and it's containers, and I read a few articles on the web and on stackoverflow that a boost::unordered_map is the fastest performing container for big ...
4
votes
3answers
446 views
Using unordered_map of C++0x
I am using an unordered_map which is included as:
#include <unordered_map>
and the program is compiled as follows:
g++ Test.cc -std=gnu++0x -o test
Am I using the unordered_map of TR1 or that of ...
4
votes
4answers
631 views
In the C++0x standard there will be unordered_map, how does this compare to boosts unordered_map?
Which is more efficient? Are there any good benchmarks out?
4
votes
1answer
591 views
Will C++0x provide hashing functions for std::type_info?
I'm still working on a good solution to my One-Of-A-Type Container Problem -- and upon reflection I think it would be nice to be able to just use something like a std::map<std::type_info, ...
4
votes
5answers
449 views
unordered_map throws bad_alloc in VS10 but not in VS9, is this a bug?
While writing a post about project euler's 14th problem I ran into a difference in behaviour between VC9 and VC10.
The following code runs OK in VC9 but in VC10 std::unordered_map throws a bad_alloc ...
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 ...
4
votes
7answers
9k views
I don't understand std::tr1::unordered_map
I need an associative container that makes me index a certain object through a string, but that also keeps the order of insertion, so I can look for a specific object by its name or just iterate on it ...
3
votes
4answers
85 views
C++ unordered_map causing compile-time error
I have the following:
#include<iostream>
#include<unordered_map>
#include<tuple>
using namespace std;
class CTest {
// Properties
public:
unordered_map<const ...
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 ...
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{
...
3
votes
2answers
561 views
How does boost::unordered_map.emplace(Args&&… args) work?
According to the documentation it:
Inserts an object, constructed with
the arguments args, in the container
if and only if there is no element in
the container with an equivalent key.
But ...
3
votes
3answers
447 views
How can I use boost::thread::id as key to an unordered_map?
According to the documentation, a boost::thread::id can be considered unique for each running thread and can be used in containers such as std::set and std::map (because the < operator is ...
3
votes
2answers
2k views
a C++ hash map that preserves the order of insertion
I have the following code:
#include <iostream>
#include "boost/unordered_map.hpp"
using namespace std;
using namespace boost;
int main()
{
typedef unordered_map<int, int> Map;
...
3
votes
2answers
831 views
Specify the minimum number of buckets when constructing a boost::unordered_map
I am trying to use boost::unordered_map to cache some values. I try to specify minimum number of buckets in the constructor:
#include <boost/unordered_map.hpp>
typedef ...
2
votes
1answer
64 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
1answer
124 views
C++: Help Creating unordered_map with User-Defined Hash/Equality
I'm trying to create a std::unordered_map, using a user-defined hash function and equality predicate, for matrix rows of integral built-in types. I use std::bind, since I need the hashing and equality ...
2
votes
1answer
112 views
Size in bytes of a structure containing unordered_map
Need to find the exact size in bytes, occupied by a tree data structure that I have implemented. Node Structure is as follows
struct Node
{
int word;
int count;
...
2
votes
2answers
227 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 ...
2
votes
2answers
142 views
unordered_map::find() inserts the key of the lookup
Is it a feature of unordered_map::find() to insert the key that we lookup with 0 value automatically?
Let me make this clear
unordered_map<int, int> tempMap;
//some code
...
2
votes
2answers
125 views
iterators in Unordered (or Hash) Maps
As far as I understand, Hashmaps are preferable to standard maps because you can find elements in close to O(1) time. This is done by using a hash or the key as an array lookup. We then resolve any ...
2
votes
2answers
292 views
unordered_map hash function c++
I need to define an unordered_map like this unordered_map<pair<int, int>, *Foo>, what is the syntax for defining and passing a hash and equal functions to this map?
I've tried passing to ...
2
votes
4answers
164 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 ...
2
votes
1answer
157 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 ...
2
votes
2answers
208 views
Remove duplicates from two large text files using unordered_map
I am new to a lot of these C++ libraries, so please forgive me if my questions comes across as naive.
I have two large text files, about 160 MB each (about 700000 lines each). I need to remove from ...
2
votes
3answers
461 views
Sorting tr1 unordered_map by key
How can I sort an unordered_map by key? I need to print an unordered_map sorted by key.
2
votes
2answers
152 views
My static map is always empty
I declared a static unordered map in a header file as follows:
static boost::unordered_map<KeyAction, sf::Key::Code> WindowKeyMap;
in that same header file, i have a function that fills the ...
2
votes
1answer
143 views
Overriding new but telling unordered_map not to use it
I'm writing a garbage collector for C/C++ as a programming exercise, and part of this involves globally overriding new. However, the garbage collector also uses an unordered_map (to store pointers to ...
2
votes
1answer
137 views
Index strings by other strings
I need to index specific strings with other strings and I can't really find a good way to do so. I tried to use tr1::unordered_map, but I'm having some difficulties using it.
If someone could tell me ...