STL容器使用DEMO multimap

2021-05-25 18:01:43 字數 904 閱讀 1911

code:

// //  author: lin yiqian

//  created: 2009/08/24

//  describe: stl multimap 使用demo

// #include 

#include 

#include 

using

namespace std;   

typedef multimap str_mmap;   

//  列印multimap

void printmap(str_mmap strmap)   

cout << endl;   

}   

//  反向列印multimap

void printmapreverse(str_mmap strmap)   

cout << endl;   

}   

//  列印指定範圍的multimap

void printmaprange(str_mmap strmap, str_mmap::key_type low, str_mmap::key_type up)   

cout << endl;   

}   

void main(void)   

//  test insert() again

//  print range map

//  print reverse map

//  find()

//  erase()

//  count()

//  size() & max_size()

//  empty()

//  clear()

system("pause");   

}  

STL容器使用DEMO vector

code author lin yiqian created 2009 08 24 describe stl vector 使用demo include include using namespace std typedef vector int vec 列印vector void printvec...

STL容器使用DEMO multiset

code author lin yiqian created 2009 08 24 describe stl multiset 使用demo include include using namespace std typedef multiset int mset 列印set void prints...

STL容器使用總結

include include include include include include 優先佇列,大的元素自動排在隊頭 include key唯一,重複會覆蓋 多重對映,允許有重複的key include 集合 相當於沒有value的對映using namespace std void pu...