Tagged Questions

std::map is an essential part of the C++ Standard Library. It allows ordered, unique keyed items which are accessible as an array.

learn more… | top users | synonyms

35
votes
6answers
24k views

Initializing a static std::map<int, int> in C++

What is the right way of initializing a static map? Do we need a static function that will initialize it?
27
votes
9answers
25k views

std::map insert or std::map find?

Assuming a map where you want to preserve existing entries. 20% of the time, the entry you are inserting is new data. Is there an advantage to doing std::map::find then std::map::insert using that ...
12
votes
6answers
8k views

In STL maps, is it better to use map::insert than []?

A while ago, I had a discussion with a colleague about how to insert values in STL maps. I preferred map[key] = value; because it feels natural and is clear to read whereas he preferred ...
11
votes
5answers
5k views

How can i estimate memory usage of stl::map?

For example, I have a std::map with known sizeof(A) and sizefo(B), while map has N entries inside. How would you estimate its memory usage? I'd say it's something like (sizeof(A) + sizeof(B)) * N * ...
11
votes
7answers
21k views

Checking value exist in a std::map - C++

I know find method finds the supplied key in std::map and return an interator to the element. Is there anyway to find the value and get an iterator to the element? What I need to do is to check ...
9
votes
4answers
342 views

Recommended way to insert elements into map [closed]

Possible Duplicate: In STL maps, is it better to use map::insert than []? I was wondering, when I insert element into map, what is the recommended way. Should I map[key] = value; or ...
9
votes
3answers
353 views

Can you use a boost::shared_ptr as a key for a map?

I may need to rethink my overall design a bit more, but as it stands, it looks like I may want to do something like: class A; class B; std::map<boost::shared_ptr<const A>, B> APtrToBMap; ...
8
votes
4answers
1k views

Is there a Java Map keySet() equivalent for C++'s std::map?

Is there a Java Map keySet() equivalent for C++'s std::map? The Java keySet() method returns "a set view of the keys contained in this map."
8
votes
4answers
2k views

std::map default value

Is there a way to specify the default value std::map 's operator[] returns when an key does not exist? Thanks!
8
votes
4answers
3k views

Boost.Bind to access std::map elements in std::for_each

I've got a map that stores a simple struct with a key. The struct has two member functions, one is const the other not. I've managed calling the const function using std::for_each without any ...
8
votes
9answers
2k views

Why does std::map operator[] create an object if the key doesn't exist?

I'm pretty sure I already saw this question somewhere (comp.lang.c++? Google doesn't seem to find it there either) but a quick search here doesn't seem to find it so here it is: Why does the std::map ...
7
votes
2answers
398 views

VS2010 RC - only 100 std::map elements in debugger

I have a small problem during debugging my App in VS 2010 RC when I want to see all the elements of std::map container. When debugger reaches the breakpoint and I want to check the values of the map ...
7
votes
4answers
1k views

Is there a difference between std::map<int, int> and std::map<const int, int>?

From what I understand, the key in a value pair in an std::map cannot be changed once inserted. Does this mean that creating a map with the key template argument as const has no effect? ...
7
votes
3answers
4k views

Custom types as key for a map - C++

I am trying to assign a custom type as a key for std::map. Here is the type which I am using as key. struct Foo { Foo(std::string s) : foo_value(s){} bool operator<(const Foo& foo1) { ...
6
votes
1answer
122 views

In map<string, int>, is it guaranteed that the int is initialized to zero?

For example, count the occurrence the words in a book, I saw somebody simply wrote: map<string, int> count; string s; while (cin >> s) count[s]++; Is this the correct way of doing so? I ...
6
votes
3answers
241 views

my program is leaking with resource owned by boost::shared_ptr

I can't see why my program is leaking, maybe you can spot it. typedef boost::shared_ptr < std::string > StringPtr; typedef std::pair < HWND, StringPtr > WMapPair; typedef ...
6
votes
6answers
2k views

Using char* as a key in std::map

I am trying to figure out why the following code is not working, and I am assuming it is an issue with using char* as the key type, however I am not sure how I can resolve it or why it is occuring. ...
6
votes
3answers
4k views

Thread safety of std::map for read-only operations

I have a std::map that I use to map values (field ID's) to a human readable string. This map is initialised once when my program starts before any other threads are started, and after that it is never ...
6
votes
4answers
2k views

Can anyone recommend a C++ std::map replacement container?

Maps are great to get things done easily, but they are memory hogs and suffer from caching issues. And when you have a map in a critical loop that can be bad. So I was wondering if anyone can ...
5
votes
3answers
552 views

std::map default value for build-in type

Recently, I was confused by the std::map operator[] function. In the MSDN library, it says: "If the argument key value is not found, then it is inserted along with the default value of the data type." ...
5
votes
1answer
177 views

std::map and -fno-implicit-templates

I am trying to compile with g++ 4.4 and link a simple program that uses the STL. I am trying to do it using the -fno-implicit-templates so all templates must be instantiated explicitly. I don't ...
5
votes
3answers
315 views

How to convert a sorted std::list of std::pair to a std::map

I have got a std::list< std::pair<std::string,double> >, which I know is sorted according to the std::string element. Since I would like to do a lot of std::find_if based on the ...
5
votes
5answers
4k views

Why is memory still accessible after std::map::clear() is called?

I am observing strange behaviour of std::map::clear(). This method is supposed to call element's destructor when called, however memory is still accessible after call to clear(). For example: struct ...
4
votes
7answers
270 views

Going down from C++ to C: alternative to std::map?

I am looking for minimalistic alternative for std::map<long, int>, which would go into Windows kernel driver, so it should be quite fast.. it is expected to hold a relatively small (~200 in ...
4
votes
5answers
255 views

Using a (mathematical) vector in a std::map

Related: what can I use as std::map keys? I needed to create a mapping where specific key locations in space map to lists of objects. std::map seemed the way to do it. So I'm keying a std::map on ...
4
votes
6answers
654 views

Deleting an std::map (Visual C++)

I have a pointer to a map that I am trying to delete (this map was allocated with new). This map is valid I think, when I hover on it while debugging, it shows pMap: [0]() .. When I try to delete ...
4
votes
3answers
1k views

Java equivalent of C++ std::map?

I'm looking for a Java class with the characteristics of C++ std::map's usual implementation (as I understand it, a self-balancing binary search tree): O(log n) performance for ...
4
votes
5answers
783 views

How to get the first n elements of a std::map

Since there is no .resize() member function in C++ std::map I was wondering, how one can get a std::map with at most n elements. The obvious solution is to create a loop from 0 to n and use the nth ...
4
votes
3answers
4k views

C++ std::map of template-class values

I'm attempting to declare a Row and a Column class, with the Row having a private std::map with values pointing to a templated Column. Something like this: template <typename T> class DataType ...
4
votes
3answers
3k views

boost::shared_ptr standard container

Assume I have a class foo, and wish to use a std::map to store some boost::shared_ptrs, e.g.: class foo; typedef boost::shared_ptr<foo> foo_sp; typeded std::map<int, foo_sp> foo_sp_map; ...
4
votes
3answers
1k views

For std::map, how will insert behave if it has to resize the container and the memory is not available?

For std::map, how will insert behave if it has to resize the container and the memory is not available?
3
votes
7answers
111 views

C++ templated map contain itself

I have a templated class, that can have a map type as template parameter. template<typename map_t> class my_class { map_t my_map; }; Now I'd like the value type of the map, to be equal to ...
3
votes
3answers
302 views

Does std::map::iterator return a copy of value or a value itself?

I'm trying to create a map inside a map: typedef map<float,mytype> inner_map; typedef map<float,inner_map> outer_map; Will I be able to put something inside inner map, or does ...
3
votes
5answers
997 views

How to use struct as key in std::map

I want to use a std::map whose key and value elements are structures. I get the following error: error C2784: 'bool std::operator <(const std::basic_string<_Elem,_Traits,_Alloc> &,const ...
3
votes
3answers
337 views

Avoid copying a map's key without raw pointers

Every time you insert a pair in a std::map whose key is a std::string, it makes two copies. You can avoid using raw pointers but it is exception-unsafe. Is there some way to use a smart pointer ...
3
votes
7answers
320 views

Do I need to delete an static std::map?

In some classes I have an static std::map with pointers inside. My question is if I need to delete at the end of the program or this memory is automatically freed. My concern is if the pointers stored ...
3
votes
2answers
125 views

Is there a way for std::map to “edit” values like a predicate for the key?

I am wondering if it is possible to create something like a predicate for a std::map for all of its values so I don't have to edit the values before I insert them into the map. What I would like is ...
3
votes
4answers
707 views

How to use a struct in std::map?

I have a complex struct i want to put as a key of the std::map to make a list of all unique objects fast: union somecomplexstruct { struct { more_structs val1, val2; ...
3
votes
5answers
279 views

How to modify key values in std::map container

Given std::map<int,std::string> myMap; fillMyMapWithStuff(myMap); // modify key values - I need to add a constant value to each key for (std::map<int,std::string>::iterator ...
3
votes
2answers
804 views

Can't create map of MoveConstructibles

I have a class containing a std::unique_ptr<> and I want to put instances of this class inside of an std::map<>. I thought one of the things that motivated the introduction of move ...
3
votes
6answers
2k views

How do I initialize a static std::map?

I've made a message-only window class, and I'm trying to map HWNDs back to the objects with those handles. I'm trying to do that using a private static std::map<HWND, CMyClass*> belonging to ...
3
votes
3answers
695 views

C++ Storing references to values in std::map

Am I right in assuming that adding/removing elements to an std::map does not effect the other elements (ie cause them to be relocated in memory) and so that the following is safe: I looked at various ...
3
votes
1answer
553 views

Nested struct in templated class with std::map::const_iterator?

The folowing code generates a syntax error at the line where the iterator is declared: template <typename T> class A { public: struct B { int x, y, z; }; void a() ...
3
votes
2answers
870 views

last key in a std::map

I am looking for the highest key value (a defined by the comparison operator) of a std::map. Is this guaranteed to be map.rbegin()->first ? (I am a bit shaky on reverse iterators, and how ...
2
votes
2answers
41 views

std::map help in image handler class

I am writing an imagehandler for an engine. So far it's going pretty good (I think) but I need help with deleting images. I have experience with vectors but not with maps. The image handler has an ...
2
votes
3answers
81 views

std::string as a key in std::map using a compare operator

I'm trying to use a std::string as a key in a std::map however, i'm unable to find() correctly. My code is somewhat complicated and large so this is a small program that demonstrates the problem I'm ...
2
votes
1answer
66 views

How does one return a reference pair from a newly inserted pair (to a map)?

How do I correctly and efficiently return a pair from a newly inserted pair to a map? inline pair<unsigned int, T> *createObj(unsigned int UID){ static pair<unsigned int, T> ret; ...
2
votes
1answer
92 views

C++ std::map Intristic Type Initialization Using [] Operator

What a title, suppose I have a map like this: std::map<int, int> m; and if I write the following cout<<m[4]; What will be the result (0, uninitialized, compiler specific)? Does ...
2
votes
1answer
146 views

Segfault on nth interation through std::map

Solution: See Bo Persson's post and my comment below. I am getting a segmentation fault with my map. What confuses me is that the n-1 iterations over the keys works but then seg faults on the nth ...
2
votes
4answers
230 views

std::map with a char[5] key that may contain null bytes

The keys are binary garbage and I only defined them as chars because I need a 1-byte array. They may contain null bytes. Now problem is, when I have a two keys: ab(0)a and ab(0)b ((0) being a null ...

1 2 3