Tagged Questions
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
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 ...
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 ...
4
votes
4answers
627 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?
3
votes
2answers
553 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
445 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
830 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
2answers
223 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
1answer
62 views
C++: Case insensitive “Boost:unordered_map” does not work?
I tried to switch from std::unordered_map (VS2010) to boost::unordered_map (version 1.48) and surprisingly, some important test cases failed in my project. I tracked down the cause and come to the ...
1
vote
1answer
64 views
How to make boost unordered_map to support flyweight<string>
I am trying to do the following:
boost::unordered_map<boost::flyweight<std::string>, boost::flyweight<std::string> > map;
boost::flyweight<std::string> foo(name);
...
1
vote
3answers
108 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
236 views
unordered_map iterator printing using cout
I'm trying to use an iterator to output an integer in a multilayered unordered_map and I'm having trouble with it, the error is below the code.
#include <boost/unordered_map.hpp>
#include ...
1
vote
2answers
345 views
Using an unordered_map of unordered_sets
If I have an unordered map of unordered_sets indexed by strings, such as
static boost::unordered_map<std::string, boost::unordered_set<std::string> > UseMap;
I had a couple question ...
1
vote
3answers
775 views
Why Visual Studio cannot find 'tr1/unordered_map?
I want to use google-ctemplate in a project. But if I include the basic file, I get the following error (with Visual Studio C++ 2005):
Error 1 fatal error C1083: Cannot open include file: ...
1
vote
4answers
420 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
2answers
1k views
Using boost unordered map
Guys, I am using dynamic programming approach to solve a problem. Here is a brief overview of the approach
Each value generated is identified using 25 unique keys.
I use the boost::hash_combine to ...
1
vote
2answers
473 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 ...
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
0answers
55 views
C++ external boost::unordered_map trouble multi thread
i'm trying to use the boost::unordered_map as a global variable, where two thread (with relative mutex) work on it. Although a simple version with an integer works, the boost::unordered_map version ...
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
254 views
Initializing a static boost::unordered_map
I have a few static unordered_maps in my application that I would like to be able to initialize on start up. They are not part of a class. In my initial setup, the header and source file were as ...
0
votes
1answer
135 views
Erasing element from multilevel unordered_map?
I have the following code where I wanted to eliminate the element I created initialy with the value 10. I'm having trouble setting up an iterator and erasing it. How is it done?
#include ...
0
votes
2answers
1k views
how to use boost::unordered_map
for my application, i need to use a hash map, so i have written a test program in which i store some instances of a baseclass in a boost::unordered_map. but i want to reach the instances by calling ...
0
votes
2answers
606 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:
...
0
votes
2answers
1k views
boost::unordered_map support by gcc
When unoreded_map support was added to gcc?
I'm using gcc 4.1.1 shipped with RHEL 5.3.
It looks like unoreded_map is missing. Is there a way to add it manually?