当前位置:   article > 正文

C++中的map用法详解_c++ map

c++ map

目录

1:map的介绍

2:map的操作

(1)定义map类型

(2)输出map中的元素

(3)添加数据

(4)查找数据

(5)删除数据


1:map的介绍

map是C++中STL中的一个关联容器,以键值对来存储数据,数据类型自己定义。它的内部数据结构是红黑树,所有它是由默认排列顺序的,关于map排序这块,大家感兴趣,可以看看这篇文章:C++中的map排序

同时map,它是一对一的,具体就是键值是唯一的,跟哈希表的概念差不多。

2:map的操作

(1)定义map类型

  1. 定义map类型,是有模板的,他接受三个参数:
  2. 第一个参数是键的数据类型
  3. 第二个参数是值的数据类型
  4. 第三个参数是排序规则,不写的话就按照默认的排序规则,也就是按照键的升序
  5. 举例:
  6. map<int,int>mp;
  7. 定义了一个叫mp的map类型,并且键值都是int类型

(2)输出map中的元素

这就是模板,大家记住就行啦!!!
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. map<string,int>m;
  4. int main()
  5. {
  6. m["uiui"]=100;
  7. m["kkkkk"]=999;
  8. m["asas"]=78;
  9. m["ns"]=1;
  10. //第一种遍历输出
  11. map<string,int>::iterator it;
  12. for(it=m.begin();it!=m.end();it++){
  13. cout<<"键="<<it->first<<" 值="<<it->second<<endl;
  14. }
  15. cout<<"-----------------------"<<endl;
  16. //第二种遍历输出
  17. for(auto i=m.begin();i!=m.end();i++){
  18. cout<<"键="<<i->first<<" 值="<<i->second<<endl;
  19. }
  20. return 0;
  21. }

(3)添加数据

map中添加数据有很多中办法,不过我比较喜欢用两中,一个是数组下标,另外一个是用insert插入pair数据。具体如下:

  1. map<string,int>m;//定义m
  2. 1:使用insert添加元素
  3. m.insert(pair<string,int>("sd",19));
  4. 2:直接使用数组下标
  5. m["sd"]=19;

insert插入:

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. map<string,int>m;
  4. int n;
  5. int main()
  6. {
  7. cout<<"请输入要添加的元素个数:";
  8. cin>>n;
  9. for(int i=0;i<n;i++){
  10. string s;
  11. int id;
  12. cout<<"键:";
  13. cin>>s;
  14. cout<<"值:";
  15. cin>>id;
  16. m.insert(pair<string,int>(s,id));//insert添加元素
  17. }
  18. //第一种遍历输出
  19. map<string,int>::iterator it;
  20. for(it=m.begin();it!=m.end();it++){
  21. cout<<"键="<<it->first<<" 值="<<it->second<<endl;
  22. }
  23. return 0;
  24. }

 

 数组下标:

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. map<string,int>m;
  4. int n;
  5. int main()
  6. {
  7. cout<<"请输入要添加的元素个数:";
  8. cin>>n;
  9. for(int i=0;i<n;i++){
  10. string s;
  11. int id;
  12. cout<<"键:";
  13. cin>>s;
  14. cout<<"值:";
  15. cin>>id;
  16. m[s]=id;
  17. }
  18. //第一种遍历输出
  19. map<string,int>::iterator it;
  20. for(it=m.begin();it!=m.end();it++){
  21. cout<<"键="<<it->first<<" 值="<<it->second<<endl;
  22. }
  23. return 0;
  24. }

(4)查找数据

 

  1. 查找数据有两种办法,一个使用find函数还有一个是用count函数(当然了,你查找数据,很明显要查找的
  2. 肯定是键吧,没有查找值的吧,哈哈哈)
  3. 1)find函数
  4. find函数查找成功会返回指向它的迭代器,没有找到的话,返回的是end这个迭代器
  5. 2)count函数
  6. count函数的意思就是查找这个键的出现次数,map中键是唯一的,所以它的值要么是0
  7. 要么是1,是1不就是查找成功吗,不过它的缺点也可以知道,它可以确定是否存在这个
  8. 键,可是却不能确定这个键的位置

 find函数使用:

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. map<string,int>m;
  4. int n;
  5. int main()
  6. {
  7. cout<<"请输入要添加的元素个数:";
  8. cin>>n;
  9. for(int i=0;i<n;i++){
  10. string s;
  11. int id;
  12. cout<<"键:";
  13. cin>>s;
  14. cout<<"值:";
  15. cin>>id;
  16. m[s]=id;
  17. }
  18. //第一种遍历输出
  19. map<string,int>::iterator ii,tt;//作为查找返回的迭代器
  20. map<string,int>::iterator it;
  21. //查找uuu
  22. ii=m.find("uuu");
  23. tt=m.find("kkk");
  24. if(ii==m.end()){
  25. cout<<"没有查找到uuu"<<endl;
  26. }
  27. else{
  28. cout<<"查找uuu成功,并且它的值="<<ii->second<<endl;
  29. }
  30. if(tt==m.end()){
  31. cout<<"没有查找到kkk"<<endl;
  32. }
  33. else{
  34. cout<<"查找kk成功,并且它的值="<<tt->second<<endl;
  35. }
  36. cout<<"map中的键值对如下 :"<<endl;
  37. for(it=m.begin();it!=m.end();it++){
  38. cout<<"键="<<it->first<<" 值="<<it->second<<endl;
  39. }
  40. return 0;
  41. }

 count函数使用:

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. map<string,int>m;
  4. int n;
  5. int main()
  6. {
  7. cout<<"请输入要添加的元素个数:";
  8. cin>>n;
  9. for(int i=0;i<n;i++){
  10. string s;
  11. int id;
  12. cout<<"键:";
  13. cin>>s;
  14. cout<<"值:";
  15. cin>>id;
  16. m[s]=id;
  17. }
  18. //第一种遍历输出
  19. map<string,int>::iterator it;
  20. //查找uuu
  21. int ii=m.count("uuu"),tt=m.count("kkk");
  22. if(ii==1){
  23. cout<<"查找成功"<<endl;
  24. }
  25. else{
  26. cout<<"查找失败"<<endl;
  27. }
  28. if(tt==1){
  29. cout<<"查找成功"<<endl;
  30. }
  31. else{
  32. cout<<"查找失败"<<endl;
  33. }
  34. cout<<"map中的键值对如下 :"<<endl;
  35. for(it=m.begin();it!=m.end();it++){
  36. cout<<"键="<<it->first<<" 值="<<it->second<<endl;
  37. }
  38. return 0;
  39. }

 

(5)删除数据

  1. 删除map中的数据用到的是erase函数啦
  2. erase里的参数可以直接写键,也可以写迭代器。
  3. erase(m.begin(),m.end());//这句话代表清空m中的内容
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. map<string,int>m;
  4. int n;
  5. int main()
  6. {
  7. cout<<"请输入要添加的元素个数:";
  8. cin>>n;
  9. for(int i=0;i<n;i++){
  10. string s;
  11. int id;
  12. cout<<"键:";
  13. cin>>s;
  14. cout<<"值:";
  15. cin>>id;
  16. m[s]=id;
  17. }
  18. //第一种遍历输出
  19. map<string,int>::iterator it;
  20. cout<<"map中的键值对如下 :"<<endl;
  21. for(it=m.begin();it!=m.end();it++){
  22. cout<<"键="<<it->first<<" 值="<<it->second<<endl;
  23. }
  24. m.erase("uuu");
  25. map<string,int>::iterator ii;
  26. ii=m.find("opop");
  27. if(ii!=m.end()){
  28. m.erase(ii);//存在opop键,就删除
  29. }
  30. cout<<"map中的键值对如下 :"<<endl;
  31. for(it=m.begin();it!=m.end();it++){
  32. cout<<"键="<<it->first<<" 值="<<it->second<<endl;
  33. }
  34. return 0;
  35. }

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/735290
推荐阅读
相关标签
  

闽ICP备14008679号