博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
STL--map学习笔记
阅读量:6299 次
发布时间:2019-06-22

本文共 9051 字,大约阅读时间需要 30 分钟。

1、简介

MapC++的一个关联容器,它提供了很好的一对一的关系。(其中一个为关键字,每个关键字key只能在map中出现一次,第二个可称为关键字的值valuemap内部自建一颗红黑树(一种严格意义上的平衡二叉树),这颗树具有对数据自动排序的功能,所以在map内部所有的数据是有序的。

2、功能

map自动建立key---value的对应,keyvalue可以是任意需要的类型

根据key的值快速查找记录,查找的复杂度基本是Log(N)

快速插入key---value记录

快速删除记录

根基key修改value记录

遍历所有记录

3、操作

使用map需要#include<map>头文件

 

  1. map最基本本的构造函数
map
mapstring; map
mapint;map
mapstring;    map
mapchar;map
mapchar;      map
mapint;

插入操作

//用数组方式插入数据#include#include
using namespace std;int main(){ map
mp; mp[1]="stu"; mp[2]="den"; mp[3]="t_one is"; mp[4]=" a boy"; map
::iterator it; for(it=mp.begin();it!=mp.end();it++) //遍历 cout<
second; for(it=mp.begin();it!=mp.end();it++) //遍历 cout<
first<<'.'<
second<
//用insert插入pair数据#include#include
#include
using namespace std;int main(){ map
mp; mp.insert(pair
(1,"studentA")); mp.insert(pair
(2,"is ")); mp.insert(pair
(3," a boy")); map
::iterator it; for(it=mp.begin();it!=mp.end();it++) //遍历 cout<
second; cout<
first<<'.'<
second<
//用insert插入插入value_type数据#include#include
#include
using namespace std;int main(){ map
mp; mp.insert(map
::value_type(1,"studentA ")); mp.insert(map
::value_type(2,"studentB ")); mp.insert(map
::value_type(3,"studentC ")); map
::iterator it; for(it=mp.begin();it!=mp.end();it++) //遍历 cout<
second; cout<
first<<'.'<
second<

以上三种用法虽然都可以实现数据插入,但也是有区别,第二种和第三种效果上是一样的,用insert函数插入数据在数据的插入上涉及到集合的唯一性这个歌概念,map种有关键字时,insert操作插入数据不了,但用数组方式就不同,他可以覆盖之前的关键字对应的值

  *验证

#include#include
#include
using namespace std;int main(){ map
mp; map
::iterator it; mp.insert(map
::value_type(1,"studentA ")); mp.insert(map
::value_type(2,"studentB ")); for(it=mp.begin();it!=mp.end();it++) //遍历 cout<
first<<'.'<
second<
::value_type(1,"studentC ")); //用insert不能覆盖mapkey为1中value的值 mp.insert(map
::value_type(2,"studentD ")); //用insert不能覆盖mapkey为1中value的值 for(it=mp.begin();it!=mp.end();it++) //遍历 cout<
first<<'.'<
second<
#include
using namespace std;int main(){ map
mp; map
::iterator it; mp[1]="studentA"; mp[2]="studentB"; for(it=mp.begin();it!=mp.end();it++) //遍历 cout<
first<<'.'<
second<
first<<'.'<
second<

 

 

 

  1. 3、map的大小
  2. map里面插入了数据,我们怎么知道当前已经插入了多少数据呢,可以用size函数,用法如下:
    1.   Int mpSize = mp.size();
  1. 4、数据遍历

      第一种方法:应用前向迭代器:

#include#include
#include
using namespace std;int main(){ map
mp; map
::iterator it; mp.insert(map
::value_type(1,"studentA ")); mp.insert(map
::value_type(2,"studentB ")); mp.insert(map
::value_type(3,"studentC ")); mp.insert(map
::value_type(4,"studentC ")); for(it=mp.begin();it!=mp.end();it++) //遍历 cout<
first<<'.'<
second<

      第二种方法:应用反向迭代器:

#include#include
#include
using namespace std;int main(){ map
mp; map
::reverse_iterator it; mp.insert(map
::value_type(1,"studentA ")); mp.insert(map
::value_type(2,"studentB ")); mp.insert(map
::value_type(3,"studentC ")); mp.insert(map
::value_type(4,"studentC ")); for(it=mp.rbegin();it!=mp.rend();it++) //遍历 cout<
first<<'.'<
second<

     第三种:用数组形式

#include#include
#include
using namespace std;int main(){ map
mp; map
::iterator it; mp.insert(map
::value_type(1,"studentA ")); mp.insert(map
::value_type(2,"studentB ")); mp.insert(map
::value_type(3,"studentC ")); mp.insert(map
::value_type(4,"studentD ")); int nsize=mp.size(); //此处应注意,应该是 for(int nindex = 1; nindex <= nSize; nindex++) //而不是 for(int nindex = 0; nindex < nSize; nindex++) for(int nindex=1;nindex<=nsize;nindex++) //遍历 cout<
<<'.'<
<

5、查找并获取map种的元素

一、count函数来判定关键字是否出现,其缺点是无法定位数据出现位置,由于map的特性,一对一的映射关系,就决定了count函数的返回值只有两个,要么是0,要么是1,出现的情况,当然是返回1

二、find函数来定位数据出现位置,它返回的一个迭代器,当数据出现时,它返回数据所在位置的迭代器,如果map中没有要查找的数据,它返回的迭代器等于end函数返回的迭代器。

查找map中是否包含某个关键字条目用find()方法,传入的参数是要查找的key,在这里需要提到的是begin()end()两个成员,

分别代表map对象中第一个条目和最后一个条目,这两个数据的类型是iterator.

#include#include
#include
using namespace std;int main(){ int n; map
mp; map
::iterator it; mp.insert(map
::value_type(1,"studentA ")); mp.insert(map
::value_type(2,"studentB ")); mp.insert(map
::value_type(3,"studentC ")); mp.insert(map
::value_type(4,"studentD ")); cin>>n;//要查找map的key值 it=mp.find(n); if(it!=mp.end()) cout<
second; else cout<<"no find"<

 

6、map种删除元素

移除某个map中的元素

Iterator erase(iterator it);//通过一个条目对象删除

Iterator erase(iterator first,iterator last)//删除一个范围

Iterator erase(iterator Key&key);//通过关键字删除

Clear()相当于 mp.erase(mp.begin(),mp.end());

#include#include
#include
using namespace std;int main(){ map
mp; map
::iterator it; mp.insert(map
::value_type(1,"studentA ")); mp.insert(map
::value_type(2,"studentB ")); mp.insert(map
::value_type(3,"studentC ")); mp.insert(map
::value_type(4,"studentD ")); //用迭代器删除1/* it=mp.find(1); mp.erase(it); for(map
::iterator it=mp.begin();it!=mp.end();it++) cout<
second<
::iterator it=mp.begin();it!=mp.end();it++) cout<
second<
::iterator it=mp.begin();it!=mp.end();it++) cout<
second<

 

7、 map中的swap用法

map中的swap不是一个容器中的元素交换,而是两个容器所有元素的交换。

8、排序 map中的sort问题

 

map中的元素是自动按Key升序排序,所以不能对mapsort函数;

 

这里要讲的是一点比较高深的用法了,排序问题,STL中默认是采用小于号来排序的,以上代码在排序上是不存在任何问题的,因为上面的关键字是int 型,它本身支持小于号运算,在一些特殊情况,比如关键字是一个结构体,涉及到排序就会出现问题,因为它没有小于号操作,insert等函数在编译的时候过 不去,下面给出两个方法解决这个问题。

//第一种:小于号重载#include#include
#include
using namespace std;typedef struct Student{ int id; string stu_name; bool operator < (Student const& _A)const { if(id<_A.id)return true; if(id==_A.id) return stu_name.compare(_A.stu_name)<0; return false; }} stu,*Pstu;int main(){ int nsize; //用学生信息映射分数 map
mapstudent; map
::iterator it; stu studentinfo; studentinfo.id=1; studentinfo.stu_name="student A"; mapstudent.insert(map
::value_type(studentinfo,90)); studentinfo.id=2; studentinfo.stu_name="student B"; mapstudent.insert(map
::value_type(studentinfo,80)); for(it=mapstudent.begin();it!=mapstudent.end();it++) cout<
first.id<<' '<
first.stu_name<<' '<
second<

 

//第二种:仿函数的应用,#include#include
#include
using namespace std;typedef struct Student{ int id; string stu_name;} stu,*Pstu;class sort{ public: bool operator() (stu const &_A,stu const &_B)const { if(_A.id < _B.id) return true; if(_A.id == _B.id) return _A.stu_name.compare(_B.stu_name)<0; return false; } };int main(){ int nsize; //用学生信息映射分数 map
mapstudent; map
::iterator it; stu studentinfo; studentinfo.id=1; studentinfo.stu_name="student A"; mapstudent.insert(pair
(studentinfo,90)); studentinfo.id=2; studentinfo.stu_name="student B"; mapstudent.insert(pair
(studentinfo,80)); for(it=mapstudent.begin();it!=mapstudent.end();it++) cout<
first.id<<' '<
first.stu_name<<' '<
second<

mapvalue排序

原理说明

#include#include
#include
#include
#include
using namespace std;typedef pair
PAIR;struct cmp{ operator()(const PAIR& A,const PAIR& B) { return A.second
stu_mp; stu_mp["student_A"]=90; stu_mp["student_B"]=78; stu_mp["student_C"]=92; stu_mp["student_D"]=97; stu_mp.insert(make_pair("student E",99)); vector
stu_vec(stu_mp.begin(),stu_mp.end()); sort(stu_vec.begin(),stu_vec.end(),cmp()); map
::iterator it; cout<<"排序前"<
first<<' '<
second<

 

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的函数

 

 PS:QAQ此篇是学习map时参照别人的博客写的,大致思路按照原博客一样,QAQ我忘记原来的地址了,中间的代码自己重新写过,文章先写在word上,在放在博客上的....排版可能很丑,多多谅解,如有问题,欢迎提出,谢谢大家。

 

 

 

 

 

转载于:https://www.cnblogs.com/LjwCarrot/p/8994355.html

你可能感兴趣的文章
开发者论坛一周精粹(第五十四期) 求购备案服务号1枚!
查看>>
validate表单验证及自定义方法
查看>>
javascript 中出现missing ) after argument list的错误
查看>>
使用Swagger2构建强大的RESTful API文档(2)(二十三)
查看>>
Docker容器启动报WARNING: IPv4 forwarding is disabled. Networking will not work
查看>>
(转)第三方支付参与者
查看>>
程序员修炼之道读后感2
查看>>
DWR实现服务器向客户端推送消息
查看>>
js中forEach的用法
查看>>
Docker之功能汇总
查看>>
!!a标签和button按钮只允许点击一次,防止重复提交
查看>>
(轉貼) Eclipse + CDT + MinGW 安裝方法 (C/C++) (gcc) (g++) (OS) (Windows)
查看>>
还原数据库
查看>>
作业调度框架 Quartz.NET 2.0 beta 发布
查看>>
mysql性能的检查和调优方法
查看>>
项目管理中的导向性
查看>>
Android WebView 学习
查看>>
(转)从给定的文本中,查找其中最长的重复子字符串的问题
查看>>
HDU 2159
查看>>
spring batch中用到的表
查看>>