The bimap tag has no wiki summary.
8
votes
1answer
656 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? ...
5
votes
1answer
1k views
Use of Boost Bimap in C++
C++ Boost has Bimap container that is a bidirectional map:
http://www.boost.org/doc/libs/1_43_0/libs/bimap/doc/html/index.html
Does anyone know the performance of Boost::bimap? I mean what's the time ...
4
votes
1answer
269 views
Anything available implemented like Loki's AssocVector but with the functionality of Boost's Bimap?
I wonder if anyone is aware of any library code that has the performance characteristics provided by Loki's AssocVector (Locality of reference of the elements, lower per-element memory overhead ...
3
votes
2answers
266 views
Variadic typedefs, or “Bimaps done the C++0x way”
Short question: Can I typedef a variadic argument pack? I need template <typename ...T> struct Forward { typedef T... args; };.
Long version:
I was thinking about reimplementing the ...
2
votes
1answer
47 views
Use a custom allocator with boost::bimap
I am working on improving the performance of a program which uses both the Boost Graph Library and boost::bimap. Profiling revealed that most of the time was being spent in memory allocation and ...
2
votes
2answers
340 views
boost.bimap alternative in c++0x
Is there a usable alternative to Boost's bimap in C++0x?
I would like to avoid Boost, but fully embrace C++0x. If necessary, a slimmed down version of Boost's bimap would work for me (I need a ...
2
votes
1answer
285 views
What is the best Guava (Google) collection API to represent direct or inverse relationship between two or multiple factors?
BiMap do have inverse method but I am not sure it is a right collection to use for the problem. Can someone please suggest alternative approach or collection/method? An example would be helpful.
...
2
votes
2answers
1k views
To instantiate BiMap Of google-collections in Java
How can you instantiate a Bimap of Google-collections?
I know the thread.
A sample of my code
import com.google.common.collect.BiMap;
public class UserSettings {
private Map<String, ...
1
vote
1answer
590 views
Java: Instantiate Google Collection's HashBiMap
I'm using Eclipse, and I've added google-collect.1.0-rc2.jar as a referenced library. Yet somehow this still doesn't work:
import com.google.common.collect.HashBiMap;
public class Odp {
...
0
votes
2answers
54 views
find() problems with boost bimap
I have the following code:
wxString getColorName(const wxColour& color)
{
typedef ColorComboBox::ColorMap::right_const_iterator ConstColorIterator;
ColorComboBox::ColorMap colorMap = ...
0
votes
1answer
26 views
Expose public view of privately scoped Boost.BiMap iterator
I have a privately scoped Boost.BiMap in a class, and I would like to export a public view of part of this map. I have two questions about the following code:
class Object {
typedef bimap<
...
0
votes
0answers
44 views
inserting into boost bimap with many-to-many relationship
I'd like create a data structure that will describe a relation between posts and tags. Each post can have multiple tags and a tag can be applied to many posts.
Each post and tag can be uniquely ...
0
votes
2answers
60 views
How to traverse a map by value
Say there is a map: typedef map<int, string> MyMap;
I'd like to traverse it by the string, for example:
3 -> a
1 -> b
7 -> b
2 -> c
One way is to sort this map by its value. But ...