C++Stl Map的使用

Map是STL的一个关联容器,它提供一对一(其中第一个可以称为关键字,每个关键字只能在map中出现一次,第二个可能称为该关键字的值)的数据 处理能力,由于这个特性,它完成有可能在我们处理一对一数据的时候,在编程上提供快速通道。这里说下map内部数据的组织,map内部自建一颗红黑树(一 种非严格意义上的平衡二叉树),这颗树具有对数据自动排序的功能,所以在map内部所有的数据都是有序的,后边我们会见识到有序的好处。

1、map简介

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

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

2、map的功能

自动建立Key - value的对应。key 和 value可以是任意你需要的类型。

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

快速插入Key -Value 记录。

快速删除记录

根据Key 修改value记录。

遍历所有记录。

3、使用map

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

#include <map>  //注意,STL头文件没有扩展名.h

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

std:map<int,string> personnel;

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

4、数据插入

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

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

//数据的插入--第一种:用insert函数插入pair数据
#include <map>
 
#include <string>
 
#include <iostream>
 
using namespace std;
 
int main()
 
{
 
    map<int, string> mapStudent;
 
    mapStudent.insert(pair<int, string>(1, "student_one"));
 
    mapStudent.insert(pair<int, string>(2, "student_two"));
 
    mapStudent.insert(pair<int, string>(3, "student_three"));
 
    map<int, string>::iterator iter;
 
    for(iter = mapStudent.begin(); iter != mapStudent.end(); iter++)
 
       cout<<iter->first<<' '<<iter->second<<endl;
 
}

第二种:用数组方式插入数据,下面举例说明

//第三种:用数组方式插入数据,下面举例说明
 
#include <map>
 
#include <string>
 
#include <iostream>
 
using namespace std;
 
int main()
 
{
 
    map<int, string> mapStudent;
 
    mapStudent[1] = "student_one";
 
    mapStudent[2] = "student_two";
 
    mapStudent[3] = "student_three";
 
    map<int, string>::iterator iter;
 
    for(iter = mapStudent.begin(); iter != mapStudent.end(); iter++)
 
        cout<<iter->first<<' '<<iter->second<<endl;
 
}

 数据的遍历

这里也提供三种方法,对map进行遍历

第一种:应用前向迭代器

第二种:应用反相迭代器,下面举例说明,要体会效果,请自个动手运行程序

关键语句  map<int, string>::reverse_iterator iter;

用数组的形式,程序说明如下:

//第三种:用数组方式,程序说明如下
 
#include <map>
 
#include <string>
 
#include <iostream>
 
using namespace std;
 
int main()
 
{
 
    map<int, string> mapStudent;
 
    mapStudent.insert(pair<int, string>(1, "student_one"));
 
    mapStudent.insert(pair<int, string>(2, "student_two"));
 
    mapStudent.insert(pair<int, string>(3, "student_three"));
 
    int nSize = mapStudent.size();
 
//此处应注意,应该是 for(int nindex = 1; nindex <= nSize; nindex++)
//而不是 for(int nindex = 0; nindex < nSize; nindex++)
 
    for(int nindex = 1; nindex <= nSize; nindex++)
 
        cout<<mapStudent[nindex]<<endl;
 
}
迭代器
map<long long,int>::iterator t;

	for(t=p.begin();t!=p.end();t++)
{......
.....}

常用函数:

  map的基本操作函数:

     C++ maps是一种关联式容器,包含“关键字/值”对

     begin()         返回指向map头部的迭代器

     clear()        删除所有元素

     count()         返回的是被查找元素的个数。如果有,返回1;否则,返回0。注意,map中不存在相同元素,所以返回值只能是                            1或0。

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

猜你喜欢

转载自blog.csdn.net/z_xindong/article/details/81868751