大家好,又见面了,我是你们的朋友全栈君。
本章主要讲解C++中的一个关联式容器map和set的介绍及其使用
根据应用场景的不同,STL总共实现了两种不同结构的关联式式容器:树型结构与哈希结构
关联式容器 | 容器结构 | 底层实现 |
---|---|---|
set、map、multiset、multimap | 树型结构 | 平衡搜索树(红黑树) |
unordered_set、unordered_map、unordered_multiset、unordered_multimap | 哈希结构 | 哈希表,哈希桶 |
用来表示具有一一对应关系的一种结构,该结构中一般只包含两个成员变量key和value,key代表键值,value表示与key对应的信息
现在要建立一个英汉互译的字典,那该字典中必然有英文单词与其对应的中文含义,而且,英文单词与其中文含义是一一对应的关系,即通过该应该单词,在词典中就可以找到与其对应的中文含义
template <class T1, class T2>
struct pair
{
typedef T1 first_type;
typedef T2 second_type;
T1 first;
T2 second;
pair(): first(T1()), second(T2())
{
}
pair(const T1& a, const T2& b): first(a), second(b)
{
}
};
注意:在使用set时,需要包含头文件set
函数声明 | 功能介绍 |
---|---|
set (const Compare& comp = Compare()); | 构造空的set |
set (InputIterator first, InputIterator last, const Compare& comp = Compare()); | 用[first, last)区间 中的元素构造set |
set ( const set<Key,Compare>& x); | set的拷贝构造 |
void testset1()
{
set<int> set1;//空构造
int num[] = {
4,5,1,8,2,4,6,3 };
set<int> set2(num, num+sizeof(num)/sizeof(num[0]));//对于数组使用原生指针构造
set<int> set3(set2);//拷贝构造
// 范围for打印,从打印结果中可以看出:set可去重
for (auto& e : set3)
cout << e << " ";
cout << endl;
}
函数声明 | 功能介绍 |
---|---|
iterator begin() | 返回set中起始位置元素的迭代器 |
iterator end() | 返回set中最后一个元素后面的迭代器 |
const_iterator cbegin() const | 返回set中起始位置元素的const迭代器 |
const_iterator cend() const | 返回set中最后一个元素后面的const迭代器 |
reverse_iterator rbegin() | 返回set第一个元素的反向迭代器,即end |
reverse_iterator rend() | 返回set最后一个元素下一个位置的反向迭代器,即 rbegin |
const_reverse_iterator crbegin() const | 返回set第一个元素的反向const迭代器,即cend |
const_reverse_iterator crend() const | 返回set最后一个元素下一个位置的反向const迭代器, 即crbegin |
void testset2()
{
int num[] = {
4,5,1,8,2,4,6,3 };
set<int> set1(num, num + sizeof(num) / sizeof(num[0]));//对于数组使用原生指针构造
// 范围for打印,从打印结果中可以看出:set可去重
for (auto& e : set1)
cout << e << " ";
cout << endl;
//迭代器正向遍历
auto it1 = set1.begin();
while (it1 != set1.end())
{
cout << *it1 << " ";
it1++;
}
cout << endl;
//迭代器反向遍历
auto it2 = set1.rbegin();
while (it2 != set1.rend())
{
cout << *it2 << " ";
it2++;
}
}
函数声明 | 功能介绍 |
---|---|
bool empty ( ) const | 检测set是否为空,空返回true,否则返回true |
size_type size() const | 返回set中有效元素的个数 |
函数声明 | 功能介绍 |
---|---|
pair<iterator,bool> insert ( const value_type& x ) | 在set中插入元素x,实际插入的是<x, x>构成的键值对, 如果插入成功,返回<该元素在set中的位置,true>,如果 插入失败,说明x在set中已经存在,返回<x在set中的位 置,false> |
void erase ( iterator position ) | 删除set中position位置上的元素 |
size_type erase ( const key_type& x ) | 删除set中值为x的元素,返回删除的元素的个数 |
void erase ( iterator first, iterator last ) | 删除set中[first, last)区间中的元素 |
void swap ( set<Key,Compare,Allocator>& st ); | 交换set中的元素 |
void clear ( ) | 将set中的元素清空 |
iterator find ( const key_type& x ) const | 返回set中值为x的元素的位置 |
size_type count ( const key_type& x ) const | 返回set中值为x的元素的个数 |
void testset3()
{
int num[] = {
1,8,4,5,3,9,2,6,7,4,5 };
set<int> set;
for (int e : num)//插入
{
auto ret=set.insert(e);
if (ret.second == false)
cout << e << "插入失败" << endl;
}
for (auto& e : set)//遍历
cout << e << " ";
cout << endl;
cout << "count 5:" << set.count(5) << endl;
set.erase(set.find(8));//删除
for (auto& e : set)
cout << e << " ";
cout << endl;
}
multiset容器与set容器实现和接口基本一致,唯一区别就是,multiset允许键值冗余,即multiset容器当中存储的元素是可以重复的
注意:对于find来说multiset返回底层搜索树中序的第一个键值为key的元素的迭代器
void TestMSet()
{
int array[] = {
2, 1, 2, 1, 6, 0, 1, 6, 4, 7 };
// 允许键值冗余
multiset<int> s(array, array + sizeof(array) / sizeof(array[0]));
for (auto& e : s)
cout << e << " ";
cout << endl;
}
注:set和map基本差不多,但是set是k模型,而map是kv模型,这导致在部分地方又有些不一样
注意:在使用map时,需要包含头文件map
函数声明 | 功能介绍 |
---|---|
map (K,V); | 构造空的map |
map (InputIterator first, InputIterator last, const Compare& comp = Compare()); | 用[first, last)区间 中的元素构造map |
map ( const map<Key,Value,Compare>& x); | map的拷贝构造 |
void testmap1()
{
map<int, int> map1;//空构造
int num[] = {
1,5,9,4,8,2,3,1,5,4,5,7 };
for (auto e : num)
{
map1.insert(make_pair(e,e));
}
map<int, int> map2(map1.begin(),map1.end());//迭代区间构造
map<int, int> map3(map2);//拷贝构造
for (auto& e : map3)
{
cout << e.first << ":" << e.second << endl;
}
}
函数声明 | 功能介绍 |
---|---|
begin()和end() | begin:首元素的位置,end最后一个元素的下一个位置 |
cbegin()和cend() | 与begin和end意义相同,但cbegin和cend所指向的元素不能修改 |
rbegin()和rend() | 反向迭代器,rbegin在end位置,rend在begin位置,其++和–操作与 begin和end操作移动相反 |
crbegin()和crend() | 与rbegin和rend位置相同,操作相同,但crbegin和crend所指向的元 素不能修改 |
void testmap2()
{
map<int, int> map1;//空构造
int num[] = {
1,5,9,4,8,2,3,1,5,4,5,7 };
for (auto e : num)
{
//map1.insert(pair<int,int>(e, e));
map1.insert(make_pair(e, e));//等同于
}
//迭代器正向遍历
auto it1 = map1.begin();
while (it1 != map1.end())
{
//cout << (*it1).first << ":"<<(*it1).second<<endl;
cout << it1->first << ":"<<it1->second<<endl;//等同于
it1++;
}
//迭代器反向遍历
auto it2 = map1.rbegin();
while (it2 != map1.rend())
{
cout << it2->first << ":" << it2->second << endl;//等同于
it2++;
}
}
函数声明 | 功能简介 |
---|---|
bool empty ( ) const | 检测map中的元素是否为空,是返回true,否则 返回false |
size_type size() const | 返回map中有效元素的个数 |
mapped_type& operator[] (const key_type& k) | 返回key对应的value |
在元素访问时,operator[]通过key找到与key对应的value然后返回其引用,当key不存在时,operator[]用默认value与key构造键值对然后插入,返回该默认value
void testmap3()
{
int arr[] = {
1,4,8,5,9,6,4,2,9,6,4,1,8,5 };
map<int, int, greater<int>> countmap;
for (auto e : arr)
{
countmap[e]++;
//当不存在对应key则插入键值pair(e,int()),这里的int()即是0 返回0再++
//当存在对应key则返回对应的value,再++
}
auto it1 = countmap.begin();
while (it1 != countmap.end())
{
//cout << (*it1).first << ":"<<(*it1).second<<endl;
cout << it1->first << ":" << it1->second << endl;//等同于
it1++;
}
}
函数声明 | 功能简介 |
---|---|
pair<iterator,bool> insert ( const value_type& x ) | 在map中插入键值对x,注意x是一个键值对,返回值 也是键值对:iterator代表新插入元素的位置,bool代 表释放插入成功 |
void erase ( iterator position ) | 删除position位置上的元素 |
size_type erase ( const key_type& x ) | 删除键值为x的元素 |
void erase ( iterator first, iterator last ) | 删除[first, last)区间中的元素 |
void swap ( map<Key,T,Compare,Allocator>& mp ) | 交换两个map中的元素 |
void clear ( ) | 将map中的元素清空 |
iterator find ( const key_type& x ) | 在map中插入key为x的元素,找到返回该元素的位置 的迭代器,否则返回end |
const_iterator find ( const key_type& x ) const | 在map中插入key为x的元素,找到返回该元素的位置 的const迭代器,否则返回cend |
size_type count ( const key_type& x ) const | 返回key为x的键值在map中的个数,注意map中key 是唯一的,因此该函数的返回值要么为0,要么为1,因 此也可以用该函数来检测一个key是否在map中 |
void testmap4()
{
int num[] = {
1,8,4,5,3,9,2,6,7,4,5 };
map<int,int> map;
for (int e : num)//插入
{
auto ret = map.insert(make_pair(e,e));
if (ret.second == false)
cout << e << "插入失败" << endl;
}
for (auto& e : map)//遍历
cout << e.first << ":" << e.second << endl;
cout << "count 5:" << map.count(5) << endl;
map.erase(map.find(8));//删除
for (auto& e : map)//遍历
cout << e.first << ":" << e.second << endl;
}
multimap容器与map容器的底层实现以及成员函数的接口都是基本一致,区别是multimap允许键值冗余,即multimap容器当中存储的元素是可以重复的
void testMmap()
{
multimap<int, string> mm;
//允许键值冗余
mm.insert(make_pair(2, "two"));
mm.insert(make_pair(2, "double"));
mm.insert(make_pair(2, "2"));
mm.insert(make_pair(2, "second"));
mm.insert(make_pair(1, "one"));
mm.insert(make_pair(3, "three"));
for (auto e : mm)
{
cout << e.first << ":" << e.second << endl;
}
cout << endl;
//从第一个2找起,遍历到最后一个
auto pos = mm.find(2);
while (pos != mm.end() && pos->first == 2)
{
cout << pos->first << ":" << pos->second << endl;
pos++;
}
}
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/196990.html原文链接:https://javaforall.cn