stl map 基本用法

构造函数

map<int, string> m_map;
map<int, string> m_map = {make_pair(1, "test")};

插入

m_map[0] = "test";
m_map.insert(pair<int,string>(1, "test"));
m_map.insert(map<int, string>::value_type (1, "test"));

删除

   m_map.erase(1);

   map<int, string>::iterator iter;
   for(iter = m_map.begin(); iter != m_map.end(); iter++) {
      if(iter->second == "test")
        m_map.erase(iter);
   }  

查找

map<char, string> b_map = {make_pair('a', "23333")};
cout << b_map['a'] << endl;

遍历

for(iter = m_map.begin(); iter != m_map.end(); iter++) {
    cout << iter->first << " " << iter->second << endl;
}

for(int i = 0; i < m_map.size(); i++) {
    cout << m_map[i] << endl;
}

你可能感兴趣的:(c++)