Declare a char int map : map « map multimap « C++ Tutorial






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

int main()
{
  map<char, int> m;

  // put pairs into map
  for(int i=0; i<26; i++) {
    m.insert(pair<char, int>('A'+i, 65+i));
  }

  char ch = 'G';

  map<char, int>::iterator p;
  
  // find value given key
  p = m.find(ch);
  if(p != m.end()) 
    cout << "Its ASCII value is  " << p->second;
  else
    cout << "Key not in map.\n";

  return 0;
}
Its ASCII value is  71








23.1.map
23.1.1.Demonstrating an STL map
23.1.2.Use string as the key and value in a map
23.1.3.Define string-string map and loop through the value key-pair
23.1.4.Declare a char int map
23.1.5.Create string float map
23.1.6.Multiple map
23.1.7.Store objects in a map
23.1.8.A phone list in which a person's name is the key and the phone number is the value.
23.1.9.Computing an inner product of tuples represented as maps