Use string as the key and value in a map : map « Map Multimap « C++






Use string as the key and value in a map

  
 

#include <iostream>
#include <map>
#include <string>
using namespace std;

int main()
{
  map<string, string> directory;

  directory.insert(pair<string, string>("T", "555-4444"));
  directory.insert(pair<string, string>("C", "555-3333"));
  directory.insert(pair<string, string>("J", "555-2222"));
  directory.insert(pair<string, string>("R", "555-1111"));

  string s = "T";

  map<string, string>::iterator p;

  p = directory.find(s);
  if(p != directory.end())
    cout << "Phone number: " << p->second;
  else
    cout << "Name not in directory.\n";

  return 0;
}

 /* 
Phone number: 555-4444
 */       
    
  








Related examples in the same category

1.Demonstrating an STL map
2.Define string-string map and loop through the value key-pair
3.Declare a char int map
4.Create string float map
5.Multiple map
6.Store objects in a map
7.Add user-defined object to map, loop through the map and output
8.Computing an inner product of tuples represented as maps
9.Use a map to create a phone directory.
10.Get the size of a map
11.Put value to map with assignment