C++ STL 练手(multimap的使用)

  1. vector的使用
  2. list的使用
  3. deque的使用
  4. set的使用
  5. map的使用
  6. multiset的使用
  7. multimap的使用
#include   
#include   
#include   
using namespace std;  
  
int main()  
{  
    ///1. 初始化  
    multimap mapStudent;  
    multimap::iterator iter, beg, end;  
      
    ///2. 添加元素  
    ///multimap不支持下标操作  
    mapStudent.insert(pair(0, "student_one"));  
    mapStudent.insert(pair(0, "student_one_copy"));///一对多  
    mapStudent.insert(pair(1, "student_two"));  
    mapStudent.insert(pair(5, "Fear Kubrick"));  
    mapStudent.insert(pair(2, "Akemi Homura"));  
    mapStudent.insert(pair(-1, "Eren Jaeger"));  
    mapStudent.insert(pair(99, "lin"));  
    cout << mapStudent.size() << endl;  
    cout << endl;  
      
    ///3. 遍历  
    for (iter = mapStudent.begin(); iter != mapStudent.end(); iter++)  
        cout << iter->first << " " << iter->second << endl;  
    cout << endl;  
      
    ///4. 单键查询与范围查询  
    ///单键查询  
    int count = mapStudent.count(0);  
    iter = mapStudent.find(0);  
    for (int i = 0; i < count; i++, iter++)  
        cout << iter->first << " " << iter->second << endl;  
    cout << endl;  
    ///范围查询  
    beg = mapStudent.lower_bound(1);/// >=1  
    end = mapStudent.upper_bound(5);/// <=5  
    for (; beg != end; beg++)  
        cout << beg->first << " " << beg->second << endl;  
    cout << endl;  
      
    ///5. 删除  
    iter = mapStudent.find(1);  
    mapStudent.erase(iter);  
    cout << mapStudent.size() << endl;  
    for (iter = mapStudent.begin(); iter != mapStudent.end(); iter++)  
        cout << iter->first << " " << iter->second << endl;  
    cout << endl;  
      
    ///6. 判空与清空  
    if (!mapStudent.empty())  
        mapStudent.clear();  
}  

你可能感兴趣的:(C++ STL 练手(multimap的使用))