The bimap tag has no wiki summary.
-1
votes
0answers
28 views
Boost bimap. Compilation error
I developed a program using boost bimap. Earlier it worked. But now when I compile the program I get error:
non-template 'map_by' used as template
struct EntityTag {};
struct IndexTag {};
...
1
vote
1answer
57 views
boost::bimap not taking vector_of
typedef boost::bimap<boost::bimaps::vector_of<int>, boost::bimaps::vector_of<float> > bimap_t;
bimap_t mp;
mp.left.insert(bimap_t::left_value_type(2, 2.0f));
Why doesn't this work ...
1
vote
0answers
31 views
boost::bimap find a relation
I just want to ask whether boost::bimap provides a method to find the relation in the bimap?
since I have a bimap with unordered_multiset at both side, I will need a function to check whether these is ...
1
vote
1answer
23 views
questions about unordered_multiset_of in boost bimap
I am implementing a boost::bimap and I am considering using unordered_multiset_of
but unordered_multiset_of need to pass a hash function and equal operator to it. And I cant get it right.
class ...
1
vote
2answers
112 views
Problems that we use a BiMap to solve
I'm reviewing the capabilities of Googles Guava API and I ran into a data structure that I haven't seen used in my 'real world programming' experience, namely, the BiMap. Is the only benefit of this ...
0
votes
2answers
141 views
Get key using value from a Map containing duplicate keys or values
I have a Map having duplicate values. I now want to get the key using value without iterating through all the Map.Entries. I have more than 500 entries in the map. I do not want to iterate the whole ...
0
votes
3answers
106 views
which data structue should be used multimap, boost::bimap, multiset or any other
In my program there are some users and their clients.
I have the list of users and their associated clients.
Example
U1 -> c1, c2, c3, c5, c8, c10, c12
U2 -> c3, c5, c13, c8, c12, c14
U3 -> ...
0
votes
1answer
59 views
How can I properly relate multiple BiMap collections using shared keys?
I have the following BiMap collections:
BiMap<String,String> accessIds = HashBiMap.create();
accessIds.put("FOO","accessId 1"); //This access Id is common to both FOO and BAR
...
0
votes
0answers
250 views
resolveUri failed on bad bitmap uri: in android
I am working with Android 2.2.
I am working with Google map API for fetching near places. and I got all near place values also. now i want to display that data into List-view.. Only name display in ...
3
votes
2answers
202 views
key-value data structure to search key in O(1) and get Max value in O(1)
I need to implement a key-value data structure that search for a unique key in O(lgn) or O(1) AND get max value in O(1). I am thinking about
boost::bimap< unordered_set_of<key> ...
1
vote
1answer
92 views
Is there a weak/soft bidirectional Map in Java?
I would like a "symbol alphabet" to have a bi-directional map with weak/soft references. Something like an Apache's Common BidiMap (or Guava's BiMap) with a WeakMap-like interface.
A solution would ...
0
votes
2answers
70 views
Boost: Accessing bimap using operator[]
In the following code:
typedef bimap< set_of< std::string >, list_of< int > > bm_type;
bm_type bm;
bm.left["one"] = 1; // "one" -> 1
bm.left["one"] = 2; // replaced: "one" -> ...
3
votes
1answer
193 views
Copying/Inserting a std::map into a boost::bimap
I tried copying the elements of a std::map into a boost::bimap. I cannot get std::copy to work (the boost documentation seems to indicate that bimap should be compatible with std::copy).
I tried the ...
2
votes
2answers
580 views
Boost::Bimap equivalent of bidirectional multimap
First part of the question is that I am trying to use boost::bimap, but from the documentation it is unclear to me how to define a bidirectional multimap.
The second part of the question is that I ...
1
vote
1answer
939 views
Guava: java.lang.NoClassDefFoundError - com.google.common.collect.HashBiMap
I currently face the problem of java.lang.NoClassDefFoundError: com.google.common.collect.HashBiMap when using guava libraries downloaded from here:
http://code.google.com/p/guava-libraries/
I ...
1
vote
1answer
383 views
boost::bimap for enum
I'm trying to create a simple bi-directional lookup facility for enums in C++. I have one-way lookup working fine...
enum MyEnum
{
One,
Two,
Three
};
const ...
0
votes
2answers
71 views
Passing a boost::bimap between functions
I'm new to the bimap functionality of the Boost libraries, and I'm having trouble passing a bimap into another function. My bimap looks like this:
typedef boost::bimap< int, int > bimap_type;
...
0
votes
1answer
570 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
105 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<
...
1
vote
0answers
204 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 ...
2
votes
1answer
251 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 ...
2
votes
1answer
207 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 ...
5
votes
2answers
706 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 ...
3
votes
2answers
1k 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 ...
3
votes
1answer
742 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.
...
8
votes
1answer
1k 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? ...
4
votes
1answer
468 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 ...
5
votes
1answer
3k 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 ...
5
votes
2answers
3k 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, ...
3
votes
1answer
1k 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 {
...


