码迷,mamicode.com
首页 > 编程语言 > 详细

C++STL库中map容器常用应用

时间:2015-08-30 14:16:45      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:

#include<iostream>
#include<cstdio>
#include<map> //按键值大小构成二叉搜索树 
using namespace std;
map<int, string> a;
int main()
{
    a.insert(map<int, string>::value_type(1,"li"));
    a.insert(map<int, string>::value_type(1,"LI"));//键值存在,插入失败 
    a.insert(pair<int, string>(2, "yang"));
    a.insert(pair<int, string>(2, "YANG"));//键值存在,插入失败 
    a[3]="wang";
    a[3]="WANG";//键值存在,进行覆盖 
    a.insert(make_pair(4,"dong"));
    a.insert(make_pair(4,"DONG"));//键值存在,插入失败 
    map<int, string>::iterator it;
    for(it=a.begin(); it!=a.end(); it++)
    {
        cout<<it->first<<"   "<<it->second<<endl;
    }

    if(a.find(1)!=a.end())
    {
        cout<<"find success!"<<endl;
    }
    else
    {
        cout<<"losing finding!"<<endl;
    }
    
    if(a.count(1)==true)
    {
        cout<<"find success!"<<endl;
    }
    else
    {
        cout<<"losing find! "<<endl;
    }
    cout<<"map中元素个数为"<<a.size()<<endl;
    a.erase(a.begin(),a.end());
    if(a.empty())
    {
        cout<<"map is empty"<<endl;
    }
    else
    {
        cout<<"map is not empty"<<endl;
    }
    return 0;
}

 

C++STL库中map容器常用应用

标签:

原文地址:http://www.cnblogs.com/program-ccc/p/4770710.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!