Top of document
©Copyright 1999 Rogue Wave Software

map


     Container

Summary

An associative container providing access to non-key values using unique keys. A map supports bidirectional iterators.

Contents

Synopsis

#include <map>
template <class Key, class T, class Compare = less<Key> 
          class Allocator = allocator>
class map;

Description

map <Key, T, Compare, Allocator> provides fast access to stored values of type T which are indexed by unique keys of type Key. The default operation for key comparison is the < operator.

map provides bidirectional iterators that point to an instance of pair<const Key x, T y> where x is the key and y is the stored value associated with that key. The definition of map provides a typedef to this pair called value_type.

The types used for both the template parameters Key and T must provide the following (where T is the type, t is a value of T and u is a const value of T):

  Copy constructors -  T(t) and T(u)
  Destructor        -  t.~T()
  Address of        -  &t and &u yielding T* and
                       const T* respectively
  Assignment        -  t = a where a is a
                       (possibley const) value of T

The type used for the Compare template parameter must satisfy the requirements for binary functions.

Interface

template <class Key, class T, class Compare = less<Key>
          class Allocator = allocator, >
 class map {

public:
// types
   typedef Key key_type;
   typedef T mapped_type;
   typedef pair<const Key, T> value_type;
   typedef Compare key_compare;
   typedef Allocator allocator_type;
   typename reference;
   typename const_reference;
   typename iterator;
   typename const_iterator;
   typename size_type;
   typename difference_type;
   typename reverse_iterator;
   typename const_reverse_iterator;
   class value_compare
      : public binary_function<value_type, value_type, bool>
   {
     friend class map<Key, T, Compare, Allocator>;
     public :
       bool operator() (const value_type&,
                        const value_type&) const;
   };
// Construct/Copy/Destroy
   explicit map (const Compare& = Compare(),
                 const Allocator& = Allocator ());
   template <class InputIterator>
    map (InputIterator, InputIterator,
         const Compare& = Compare(),
         const Allocator& = Allocator ());
   map (const map<Key, T, Compare, Allocator>&);
   ~map();
   map<Key, T, Compare, Allocator>& 
    operator= (const map<Key, T, Compare, Allocator>&);
   allocator_type get_allocator () const;
// Iterators
   iterator begin();
   const_iterator begin() const;
   iterator end();
   const_iterator end() const;
   reverse_iterator rbegin();
   const_reverse_iterator rbegin() const;
   reverse_iterator rend();
   const_reverse_iterator rend() const;
// Capacity
   bool empty() const;
   size_type size() const;
   size_type max_size() const;
// Element Access
   mapped_type& operator[] (const key_type&);
   const mapped_type& operator[] (const key_type&) const;
// Modifiers
   pair<iterator, bool> insert (const value_type&);
   iterator insert (iterator, const value_type&);
   template <class InputIterator>
    void insert (InputIterator, InputIterator);
   iterator erase (iterator);
   size_type erase (const key_type&);
   iterator erase (iterator, iterator);
   void swap (map<Key, T, Compare, Allocator>&);
// Observers
   key_compare key_comp() const;
   value_compare value_comp() const;
// Map operations
   iterator find (const key_value&);
   const_iterator find (const key_value&) const;
   size_type count (const key_type&) const;
   iterator lower_bound (const key_type&);
   const_iterator lower_bound (const key_type&) const;
   iterator upper_bound (const key_type&);
   const_iterator upper_bound (const key_type&) const;
   pair<iterator, iterator> equal_range (const key_type&);
   pair<const_iterator, const_iterator>
     equal_range (const key_type&) const;
};
// Non-member Map Operators
template <class Key, class T, class Compare, class Allocator>
 bool operator== (const map<Key, T, Compare, Allocator>&,
                  const map<Key, T, Compare, Allocator>&);
template <class Key, class T, class Compare, class Allocator>
 bool operator< (const map<Key, T, Compare, Allocator>&,
                 const map<Key, T, Compare, Allocator>&);
// Specialized Algorithms
template <class Key, class T, class Compare, class Allocator>
 void swap (map<Key,T,Compare,Allocator>&,
            map<Key,T,Compare,Allocator>&);

Constructors and Destructors

explicit map (const Compare& comp = Compare (),
              const Allocator& alloc = Allocator());
template <class InputIterator>
map (InputIterator first, InputIterator last,
     const Compare& comp = Compare (),
     const Allocator& alloc = Allocator());
map (const map<Key,T,Compare,Allocator>& x);
~map ();

Allocator

allocator_type get_allocator () const;

Iterators

iterator begin() ;
const_iterator begin() const;
iterator end() ;
const_iterator end() const;
reverse_iterator rbegin();
const_reverse_iterator rbegin() const;
reverse_iterator rend() ;
const_reverse_iterator rend() const;

Member Operators

map<Key, T, Compare, Allocator>& 
operator= (const map<Key, T, Compare, Allocator>& x);
mapped_type& operator[] (const key_type& x);

Allocator

allocator_type get_allocator () const;

Member Functions

void
clear ();
size_type 
count (const key_type& x) const;
bool 
empty() const;
pair<iterator, iterator> 
equal_range  (const  key_type& x);
pair<const_iterator,const_iterator> 
equal_range (const key_type& x) const;
iterator
erase (iterator position);
iterator
erase (iterator first, iterator last);
size_type 
erase (const key_type& x);
iterator 
find (const key_type& x);
const_iterator find (const key_type& x) const; 
pair<iterator, bool> 
insert (const value_type& x);
iterator 
insert (iterator position, const value_type& x);
template <class InputIterator>
void  
insert (InputIterator first, InputIterator last);
key_compare 
key_comp () const;
iterator 
lower_bound (const key_type& x);
const_iterator 
lower_bound (const key_type& x) const;
size_type 
max_size() const;
size_type 
size() const;
void swap (map<Key, T, Compare, Allocator>& x);
iterator 
upper_bound (const key_type& x);
const_iterator 
upper_bound (const key_type& x) const;
value_compare  
value_comp () const;

Non-member Operators

template <class Key, class T, class Compare, class Allocator>
bool operator== (const map<Key, T, Compare, Allocator>& x,
                 const map<Key, T, Compare, Allocator>& y);
template <class Key, class T, class Compare, class Allocator>
bool operator< (const map<Key, T, Compare, Allocator>& x,
                const map<Key, T, Compare, Allocator>& y);
template <class Key, class T, class Compare, class Allocator>
void swap (map<Key, T, Compare, Allocator>& a,
           map<Key, T, Compare, Allocator>& b);

Example

//
// map.cpp
//
 #include <string>
 #include <map>
 #include <iostream.h>
 typedef map<string, int, less<string> > months_type;
 // Print out a pair
 template <class First, class Second>
 ostream& operator<<(ostream& out, 
                     const pair<First,Second> & p)
 {
   cout << p.first << " has " << p.second << " days";
   return out;
 }
 // Print out a map
 ostream& operator<<(ostream& out, const months_type & l)
 {
   copy(l.begin(),l.end(), ostream_iterator
                <months_type::value_type>(cout,"\n"));
   return out;
 }
 int main(void)
 {
   // create a map of months and the number of days 
   // in the month
   months_type months;
   typedef months_type::value_type value_type;
  
   // Put the months in the multimap
   months.insert(value_type(string("January"),   31));
   months.insert(value_type(string("Febuary"),   28));
   months.insert(value_type(string("Febuary"),   29));
   months.insert(value_type(string("March"),     31));
   months.insert(value_type(string("April"),     30));
   months.insert(value_type(string("May"),       31));
   months.insert(value_type(string("June"),      30));
   months.insert(value_type(string("July"),      31));
   months.insert(value_type(string("August"),    31));
   months.insert(value_type(string("September"), 30));
   months.insert(value_type(string("October"),   31));
   months.insert(value_type(string("November"),  30));
   months.insert(value_type(string("December"),  31));
   // print out the months
   // Second Febuary is not present
   cout << months << endl;
   // Find the Number of days in June
   months_type::iterator p = months.find(string("June"));
   // print out the number of days in June
   if (p != months.end())
     cout << endl << *p << endl;
  
   return 0;
 }
Output :
April has 30 days
August has 31 days
December has 31 days
February has 28 days
January has 31 days
July has 31 days
June has 30 days
March has 31 days
May has 31 days
November has 30 days
October has 31 days
September has 30 days

Warning

Member function templates are used in all containers provided by the Standard Template Library. An example of this feature is the constructor for map<Key,T,Compare,Allocator> that takes two templated iterators:


template <class InputIterator>
 map (InputIterator, InputIterator, const Compare& = Compare(),
      const Allocator& = Allocator());

map also has an insert function of this type. These functions, when not restricted by compiler limitations, allow you to use any type of input iterator as arguments. For compilers that do not support this feature, we provide substitute functions that allow you to use an iterator obtained from the same type of container as the one you are constructing (or calling a member function on), or you can use a pointer to the type of element you have in the container.

For example, if your compiler does not support member function templates, you can construct a map in the following two ways:

map<int, int, less<int> >::value_type intarray[10];
map<int, int, less<int> > first_map(intarray, intarray + 10);
map<int, int, less<int> > second_map(first_map.begin(),
                                     first_map.end());

But not this way:

map<long, long, less<long> > long_map(first_map.begin(),
                                      first_map.end());

Since the long_map and first_map are not the same type.

Also, many compilers do not support default template arguments. If your compiler is one of these, you need to always supply the Compare template argument and the Allocator template argument. For instance, you'll have to write:

map<int, int, less<int>,  allocator>

instead of:

map<int, int>

See Also

allocator, Containers, Iterators, multimap


Top of document