/************************************************************************
*
* Map的特点: 1、存储Key-value对
* 2、支持快速查找,查找的复杂度基本是Log(N)
* 3、快速插入,快速删除,快速修改记
*
/************************************************************************/
#include
#include
#include
using namespace std;
int main()
{
map m;
m["a"]=1;
m["b"]=6;
m["c"]=9;
map::iterator it;
it=m.begin();
const char* c =it->first;
cout<
int i = m["c"];
while(it!=m.end()){
cout << it->first<second<
++it;
}
cout <
cout <
cout <
cout <
cout <
cout<
cout<
return 0;
}
运行结果
文章来源http://www.cnblogs.com/anywei/archive/2011/10/27/2227009.html