Iterating over the elements of the map and using the current pair option and second elements. : pair « Map Multimap « C++






Iterating over the elements of the map and using the current pair option and second elements.

   
#include <map> 
#include <iostream> 
#include <string> 

using namespace std; 

int main() 
{ 
  map<string, double> option; 

  option["r"] = 0.1;       
  option["s"] = 0.2;     
  option["K"] = 1.0;       
  option["T"] = 0.7;       
  option["S"] = 1.3;       

  cout << "Size of map: " << option.size() << endl;; 

  map<string, double>::iterator i = option.begin(); 

  while (i != option.end()) 
  { 
    cout << "Element pair [" << (*i).first << "," << (*i).second << "]"; 
    i++; 
  } 

  return 0; 

}
  
    
    
  








Related examples in the same category

1.Inserting pairs of object into map
2.print the maximum number of pairs that DateMap can hold
3.Use map to store the value of the month name and its day number
4.Put pairs to map with insert
5.Map for string key and integer value
6.for each basic
7.Computing the Median 1
8.Sort a list of int and string pairs
9.Pass output message function to for_each function