Tagged Questions
The stlmap tag has no wiki summary.
14
votes
12answers
955 views
C++ Long switch statement or look up with a map?
In my C++ application, I have some values that act as codes to represent other values. To translate the codes, I've been debating between using a switch statement or an stl map. The switch would look ...
6
votes
8answers
512 views
Intersection of two STL maps
Given that I have two STL maps, say:
map<int, double> A;
map<int, double> B;
I'd like to get the intersection of the two maps, something of the form:
map<int, ...
6
votes
6answers
7k views
C++ Thread-Safe Map
Does anyone know where I can find an implimentation that wraps an STL map and makes it thread safe? When I say thread safe I mean that it offers only serial access to the map, one thread at a time. ...
6
votes
4answers
5k views
C++ const std::map reference fails to compile
Is there a reason why passing a reference to a STL map as const causes the [] operator to break? I get this compiler error (gcc 4.2) when I use const:
error: no match for ‘operator[]’ in
...
5
votes
4answers
2k views
Why Can't I store references in an STL map in C++?
I undersatnd that references are not pointers, but an alias to an object. However, I still don't understand what exactly this means to me as a programmer, i.e. what are references under the hood?
I ...
5
votes
14answers
2k views
How can I increase the performance in a map lookup with key type std::string?
I'm using an std::map (VC++ implementation) and it's a little slow for lookups via the map's find method.
The key type is an std::string.
Can I increase the performance of this std::map lookup via ...
3
votes
2answers
144 views
what is the best way to use the C type uuid_t as a key in STL std::map?
Is this an appropriate way to provide unique keys in a map? In other words, is the key being made from the unique value contained in the uuid, or is it being made from the pointer to the uuid_t ...
2
votes
2answers
280 views
User Defined Class as a Template Parameter
I' m implementing a custom STL map. I need to make sure that any data type (basic or user defined) key will work with it. I declared the Map class as a template which has two parameters for the key ...
1
vote
3answers
52 views
Mapping items in 2-dimensional space into memory
I've got number of items that are identified by its 2-dimensional coordinates (signed short range). Every item is class containing 64KB of data. There are about 500-1500 of items at any moment. Items ...
1
vote
1answer
152 views
How to find the depth of each node in std::map?
If I construct, my own binary tree, then I can find the depth of each node.
The sample code is as follows
template<class datatype>
void binary_node<datatype>::printNodeWithDepth(int ...
1
vote
4answers
116 views
Displaying map stl
Declared a map early on:
map<char*,char*> rtable; // used to store routing information
Now I'm attempting to display the contents of the map:
void Routes::viewroutes(){
typedef ...
1
vote
4answers
676 views
What operations are thread-safe on std::map?
Suppoes I have:
stl::map<std::string, Foo> myMap;
is the following function thread safe?
myMap["xyz"] ?
I.e. I want to have this giant read-only map that is shared among many threads; but ...
1
vote
3answers
973 views
Weird bug while inserting into C++ std::map
I'm trying to insert some value pairs into a std::map.
In the first case, I receive a pointer to the map, dereference it and use the subscript operator to assign a value. i.e.
(*foo)[index] = bar;
...
0
votes
2answers
102 views
Can I access the elements in a c++ std::map by an integer index?
I have a map of elements that I would like to iterate through. Of course, the standard way to do that would be using a for loop with
for (map<string, int> iterator it = myMap.begin(); it != ...
0
votes
6answers
256 views
Does map<key, data> in C++ STL support native data types like Structures?
I am trying to write something like this. My question is how do I map a key to a native data type like structure. I wrote this snipped but I couldn't compile it. Do you have any ideas on how to ...