What is a Map? How would I create and use one in C++?
|
1
|
|||||||
|
|
|
If you mean You can write:
|
||
|
|
|
|
What is a map - it's a data structure that holds pairs of related values. Each pair consists of a key and a value. Every key in a map must be unique, but different keys can have the same values. Maps are often used for caching or implementing lookup tables, much like a dictionary (which is actually what maps are called in some languages). As for how to implement a map in c++, short answer is - you don't. You use std::map or one of its variants. |
||
|
|
|
|
Map is collection type end it is implemented in C++ in the STL (Standard Template Library) end here is the official explanation from the library documentation. Map is a Sorted Associative Container that associates objects of type Key with objects of type Data. Map is a Pair Associative Container, meaning that its value type is pair. It is also a Unique Associative Container, meaning that no two elements have the same key. Map has the important property that inserting a new element into a map does not invalidate iterators that point to existing elements. Erasing an element from a map also does not invalidate any iterators, except, of course, for iterators that actually point to the element that is being erased. Example
Here is the complete documentation of the Map type in STL. I hope this help. |
||
|
|
