华师一附中OI组

 找回密码
 立即注册
搜索
热搜: 活动 交友 discuz
查看: 1071|回复: 0
打印 上一主题 下一主题

C++中map容器的使用

[复制链接]

738

主题

1485

帖子

5420

积分

管理员

Rank: 9Rank: 9Rank: 9

积分
5420
跳转到指定楼层
楼主
发表于 2018-8-11 10:25:58 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
map是c++的一个标准容器,它提供了很好一对一的关系,在一些程序中建立一个map可以起到事半功倍的效果。



1、map最基本的构造函数
   map<string , int >mapstring;         map<int ,string >mapint;
   map<sring, char>mapstring;         map< char ,string>mapchar;
   map<char ,int>mapchar;             map<int ,char >mapint;

2. map添加数据(四种方式)——insert( )

map<int ,string> maplive;  
maplive.insert(pair<int,string>(102,"aclive"));
maplive.insert(map<int,string>::value_type(321,"hai"));
maplive[112]="April";

//map中最简单最常用的插入添加([]中表示第一个元素,=后表示map的第二个值)

maplive.insert(make_pair(125,"hello"));
3、map中元素的查找——find( )

   find()函数返回一个迭代器指向键值为key的元素,如果没找到就返回指向map尾部的迭代器。        

   map<int ,string >::iterator  l_it;;
   l_it=maplive.find(112);
   if(l_it==maplive.end())
        cout<<"we do not find 112"<<endl;
   else

    cout<<"wo find 112"<<endl;
4、map中元素的删除——erase( )

(1)   my_Map.erase(my_Itr); //my_Itr是迭代器

(2)   my_Map.erase("c");
   如果删除112;
   map<int ,string >::iterator l_it;;
   l_it=maplive.find(112);
   if(l_it==maplive.end())
        cout<<"we do not find 112"<<endl;
   else  

    maplive.erase(l_it);  //delete 112;

5、map中 swap( )的用法——实现元素的交换

#include "stdafx.h"
#include <iostream>
#include<map>
using namespace std;
int main()
{
        map<int, int>m1, m2, m3;
        map<int, int>::iterator  m1_Iter;
        m1.insert(pair<int, int>(1, 10));
        m1.insert(pair<int, int>(2, 20));
        m1.insert(pair<int, int>(3, 30));
        m2.insert(pair<int, int>(10, 100));
        m2.insert(pair<int, int>(20, 200));
        m3.insert(pair<int, int>(30, 300));
        cout << "orininal m1 is:" << endl;

        for (m1_Iter = m1.begin(); m1_Iter != m1.end(); m1_Iter++)
        {
                cout << m1_Iter->second << endl;
        }
        //使用swap()函数实现两个容器的交换
        m1.swap(m2);//不用考虑每个容器中的元素的个数是否相同
        cout << "和m2交换过之后,m1是:";
        for (m1_Iter = m1.begin(); m1_Iter != m1.end(); m1_Iter++)
        {
                cout << m1_Iter->second << endl;
        }
        cout << "和m2交换过之后,m2是:";
        for (m1_Iter = m2.begin(); m1_Iter != m2.end(); m1_Iter++)
        {
                cout << m1_Iter->second << endl;
        }
        swap(m1, m3);//不用考虑每个容器中的元素的个数是否相同
        cout << "和m3交换过之后,m1是:";
        for (m1_Iter = m1.begin(); m1_Iter != m1.end(); m1_Iter++)
        {
                cout << m1_Iter->second << endl;
        }

         return   0;
}
总结: map中的swap不是一个容器中的元素交换,而是两个容器交换;它有两种实现方法:

1>m1.swap(m2);//将m2和m1进行交换

2>swap(m1, m3);

由于swap( )是将两个容器进行交换,所以不用考虑每个容器中的元素的个数是否相同,就像上例中的m1,m2,m3,对它们进行swap的操作,一样可以成功运行。

6、map的sort问题:
map中的元素是自动按key升序排序,所以不能对map用sort函数。即不管在初始化时对m1的赋值是如何实现的,在输出是m1中元素是按照升序排列的。

7、map的基本操作函数:
      C++ Maps是一种关联式容器,包含“关键字/值”对
      begin()          返回指向map头部的迭代器
      clear()         删除所有元素
      count()          返回指定元素出现的次数
      empty()          如果map为空则返回true
      end()            返回指向map末尾的迭代器
      equal_range()    返回特殊条目的迭代器对
      erase()          删除一个元素
      find()           查找一个元素
      get_allocator()  返回map的配置器
      insert()         插入元素
      key_comp()       返回比较元素key的函数
      lower_bound()    返回键值>=给定元素的第一个位置
      max_size()       返回可以容纳的最大元素个数
      rbegin()         返回一个指向map尾部的逆向迭代器
      rend()           返回一个指向map头部的逆向迭代器
      size()           返回map中元素的个数
      swap()            交换两个map
      upper_bound()     返回键值>给定元素的第一个位置
      value_comp()      返回比较元素value的函数

8、常用方法

map<int, string>Mymap;

Mymap.size();//返回元素数目

Mymap.empty();//判断是否为空

Mymap.clear();//清空所有元素

可以直接进行赋值和比较:=,   >,   >=,   <,   <=,   !=   等等



最后,举一个实际的应用案例供大家参考:
要求: 将mymap中itemS 的a大于100的项删除!

#include "stdafx.h"
#include <iostream>
#include"stdlib.h"
#include <stdio.h>   
#include<vector>     
#include<string>
#include "header.h"
#include <map>

using namespace std;
typedef struct item
{
        int a;
        char b[20];
}itemS;

itemS s[4] = {
        { 102, "what" },
        { 33, "hello" },
        { 198, "world" },
        { 45, "C++" }
};
int main()
{
        map<string, itemS>mymap;
        string str[4] = { "1st", "2nd", "3rd", "4th" };
        for (int i = 0; i < 4; i++)
        {
                mymap.insert(make_pair(str[i], s[i]));
        }
        map<string, itemS>::iterator it = mymap.begin();
        while (it != mymap.end())
        {
                if ((it->second).a>100)mymap.erase(it++);
                else   it++;
        }
        it = mymap.begin();
        while (it != mymap.end())
        {
                cout << it->first << "   " << (it->second).a << "   " << (it->second).b << endl;
                it++;
        }
        return 0;
}


回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|Archiver|手机版|小黑屋|服务支持:DZ动力|华师一附中OI组  

GMT+8, 2024-11-2 18:27 , Processed in 0.101597 second(s), 24 queries .

Powered by Discuz! X3.2

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表