C++map的用法整理

匿名 (未验证) 提交于 2019-12-03 00:27:02

参考博客 点击打开链接

1、map简介

map是一类关联式容器。它的特点是增加和删除节点对迭代器的影响很小,除了那个操作节点,对其他的节点都没有什么影响。

对于迭代器来说,可以修改实值,而不能修改key。

2、map的功能

根据key值快速查找记录,查找的复杂度基本是Log(N),如果有1000个记录,最多查找10次,1,000,000个记录,最多查找20次。

快速删除记录

遍历所有记录。

3、使用map

使用map得包含map类所在的头文件

map对象是模板类,需要关键字和存储对象两个模板参数:

std:map<int

这样就定义了一个用int作为索引,并拥有相关联的指向string的指针.


4. map的构造函数

map共提供了6个构造函数,这块涉及到内存分配器这些东西,略过不表,在下面我们将接触到一些map的构造方法,这里要说下的就是,我们通常用如下方法构造一个map:

在构造map容器后,我们就可以往里面插入数据了。这里讲三种插入数据的方法:

第一种:用insert函数插入pair数据

#include <iostream> #include <cstdio> #include <cstdlib> #include <map> using namespace std ; int main() {    map<int ,string > stu ;    map<int ,string >::iterator iter ;//前向迭代器;    map<int ,string >::reverse_iterator it ; // 反向迭代器    stu.insert(pair<int ,string>(1,"student_1"));    stu.insert(pair<int ,string>(2,"student_2"));    stu.insert(pair<int ,string>(3,"student_3"));    stu.insert(pair<int ,string>(4,"student_4"));    cout<<stu.size()<<endl; // map 大小    cout<<"前向迭代器 遍历map"<<endl;    for(iter = stu.begin() ;iter!=stu.end() ;iter++)    {        cout<<" key: " <<iter->first <<"  value :"<<iter->second<<endl;    }    cout<<"反向迭代器 遍历map"<<endl;    for(it = stu.rbegin();it!=stu.rend() ;it++)    {        cout<<"key: " <<it->first <<"value :"<<it->second<<endl;    }     return 0 ; }  

第二种:用insert函数插入value_type数据,


#include <iostream> #include <cstdio> #include <cstdlib> #include <map> using namespace std ; int main() {    map<int ,string > stu ;    map<int ,string >::iterator iter ;//前向迭代器;    map<int ,string >::reverse_iterator it ; // 反向迭代器    stu.insert(map<int ,string >::value_type (1,"student_1"));    stu.insert(map<int ,string >::value_type (2,"student_2"));    stu.insert(map<int ,string >::value_type (3,"student_3"));    stu.insert(map<int ,string >::value_type (4,"student_4"));     stu.insert(map<int ,string >::value_type (1,"student_5")); // 注意这个没有插入map     /*         map 它具有集合的唯一性,即不能出现同样的键,即当map中有这个关键字时,insert操作是插入数据不了的,          */     cout<<stu.size()<<endl;    cout<<"前向迭代器 遍历 map"<<endl;    for(iter = stu.begin() ;iter!=stu.end() ;iter++)    {        cout<<" key: " <<iter->first <<"  value :"<<iter->second<<endl;    }    cout<<"反向迭代器 遍历 map"<<endl;    for(it = stu.rbegin();it!=stu.rend() ;it++)    {        cout<<"key: " <<it->first <<"value :"<<it->second<<endl;    }     return 0 ; } 

#include <iostream> #include <cstdio> #include <cstdlib> #include <map> using namespace std ; int main() {    map<int ,string > stu ;    map<int ,string >::iterator iter ;//前向迭代器;    map<int ,string >::reverse_iterator it ; // 反向迭代器    stu[1] = "student_1" ;    stu[2] = "student_2" ;    stu[3] = "student_3" ;    stu[4] = "student_4" ;    stu[1] = "student_5" ; // 注意这个用下标法可以更改;      /*         map 它具有集合的唯一性,即不能出现同样的键,即当map中有这个关键字时,insert操作是插入数据不了的,      */     cout<<stu.size()<<endl;    cout<<"前向迭代器 遍历 map"<<endl;    for(iter = stu.begin() ;iter!=stu.end() ;iter++)    {        cout<<" key: " <<iter->first <<"  value :"<<iter->second<<endl;    }    cout<<"反向迭代器 遍历 map"<<endl;    for(it = stu.rbegin();it!=stu.rend() ;it++)    {        cout<<"key: " <<it->first <<"value :"<<it->second<<endl;    }     return 0 ; } 

6. 查找并获取map中的元素(包括判定这个关键字是否在map中出现)

在这里我们将体会,map在数据插入时保证有序的好处。

要判定一个数据(关键字)是否在map中出现的方法比较多,这里标题虽然是数据的查找,在这里将穿插着大量的map基本用法。

这里给出三种数据查找方法

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

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

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

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



#include <iostream> #include <cstdio> #include <cstdlib> #include <map> using namespace std ; int main() {    map<int ,string > stu ;    map<int ,string >::iterator iter ;//前向迭代器;    map<int ,string >::reverse_iterator it ; // 反向迭代器    stu[1] = "student_1" ;    stu[2] = "student_2" ;    stu[3] = "student_3" ;    stu[4] = "student_4" ;    //stu[1] = "student_5" ; // 注意这个用下标法可以更改;      /*         map 它具有集合的唯一性,即不能出现同样的键,即当map中有这个关键字时,insert操作是插入数据不了的,      */     iter = stu.find(5); // find()返回一个迭代器,当所要找的键 存在时返回该位置的迭代器,否则返回最后一个键的位置上的    // 迭代器    if(iter!=stu.end())     cout<<stu[2]<<endl;    else    {         cout<<"没有"<<endl;         stu.insert(pair<int ,string >(5,"student_5"));    }    iter = stu.begin() ;     while(iter!=stu.end())     {         cout<<iter->first <<" " <<iter->second<<endl;         /* iter -> first 表示键  */         /* iter -> second 表示值*/         iter++;     }      return 0 ; } 

从map中删除元素

这里要用到erase函数,它有三个重载了的函数,下面在例子中详细说明它们的用法

#include <iostream> #include <cstdio> #include <cstdlib> #include <map> using namespace std ; int main() {     int m ;     map<int ,string > stu ;     map<int ,string >::iterator iter ;//前向迭代器;     map<int ,string >::reverse_iterator it ; // 反向迭代器     stu.insert(map<int ,string>::value_type (1,"student_1"));     stu.insert(map<int ,string>::value_type (2,"student_2"));     stu.insert(map<int ,string>::value_type (3,"student_3"));     stu.insert(map<int ,string>::value_type (4,"student_4"));      cout<<"输入要删除的"<<endl;     cin >> m ;     iter = stu.find(m);     if(iter!=stu.end())     {         stu.erase(iter);     }      else     {         cout<<"没有找到"<<endl;     }     iter = stu.begin() ;     while(iter!=stu.end())     {         cout<<iter->first<<" "<<iter->second<<endl;         iter++ ;     }     return 0 ; } 

begin

clear

count

empty

end

equal_range

erase

find

get_allocator

insert

key_comp

lower_bound

max_size

rbegin

rend

size

swap

upper_bound

value_comp



文章来源: C++map的用法整理
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!