[c++学习笔记22]:set/ multiset 容器

本文深入解析C++ STL中的set容器,从基本概念、构造与赋值、大小与交换、插入与删除、查找与统计,到set与multiset的区别,以及如何自定义排序规则。通过实例代码展示set容器的强大功能。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

1 set基本概念

简介:

  • 所有元素都会在插入时自动被排序

本质:

  • set/multiset属于关联式容器,底层结构是用二叉树实现。

set和multiset区别

  • set不允许容器中有重复的元素
  • multiset允许容器中有重复的元素

2 set构造和赋值

功能描述:创建set容器以及赋值

构造:

  • set<T> st; //默认构造函数:
  • set(const set &st); //拷贝构造函数

赋值:

  • set& operator=(const set &st); //重载等号操作符
#include<iostream>
using namespace std;
#include<set>
#include<string>
void printSet(set<int>& s)
{
	for (set<int>::iterator it = s.begin(); it != s.end(); it++)
	{
		cout << *it << " ";
	}
	cout << endl;
}
void test01() 
{
	set<int>s1;//默认构造
	s1.insert(4);
	s1.insert(2);
	s1.insert(3);
	s1.insert(1);
	//自动排序
	printSet(s1);

	set<int>s2(s1);//拷贝构造
	printSet(s2);

	set<int>s3;
	s3 = s2;//赋值
	printSet(s3);
}
void test02()
{

}
int main() {
	
	test01();
	cout << "----------------" << endl;
	test02();
	system("pause");
	return 0;
}

总结:

  • set容器插入数据时用insert
  • set容器插入数据的数据会自动排序

3 set大小和交换

功能描述:

  • 统计set容器大小以及交换set容器

函数原型:

  • size(); //返回容器中元素的数目
  • empty(); //判断容器是否为空
  • swap(st); //交换两个集合容器
#include<iostream>
using namespace std;
#include<set>
#include<string>
void printSet(set<int>& s)
{
	for (set<int>::iterator it = s.begin(); it != s.end(); it++)
	{
		cout << *it << " ";
	}
	cout << endl;
}
void test01() 
{
	set<int>s1;//默认构造
	s1.insert(4);
	s1.insert(2);
	s1.insert(3);
	s1.insert(1);
	//自动排序
	printSet(s1);
	if (s1.empty())
	{
		cout << "set为空!" << endl;
	}
	else {
		cout << "set不为空,且大小为: " << s1.size() << endl;
	}
}
//交换
void test02()
{
	set<int>s1;//默认构造
	s1.insert(4);
	s1.insert(2);
	s1.insert(3);
	s1.insert(1);
	set<int>s2;//默认构造
	s2.insert(42);
	s2.insert(22);
	s2.insert(32);
	s2.insert(12);
	cout << "交换前:" << endl;
	printSet(s1);
	printSet(s2);
	s1.swap(s2);
	cout << "交换后:" << endl;
	printSet(s1);
	printSet(s2);
}
int main() {
	
	test01();
	cout << "----------------" << endl;
	test02();
	system("pause");
	return 0;
}

在这里插入图片描述

总结:

  • 统计大小 — size
  • 判断是否为空 — empty
  • 交换容器 — swap

4 set插入和删除

功能描述:

  • set容器进行插入数据和删除数据

函数原型:

  • insert(elem); //在容器中插入元素。
  • clear(); //清除所有元素
  • erase(pos); //删除pos迭代器所指的元素,返回下一个元素的迭代器。
  • erase(beg, end); //删除区间[beg,end)的所有元素 ,返回下一个元素的迭代器。
  • erase(elem); //删除容器中值为elem的元素。
#include<iostream>
using namespace std;
#include<set>
#include<string>
void printSet(set<int>& s)
{
	for (set<int>::iterator it = s.begin(); it != s.end(); it++)
	{
		cout << *it << " ";
	}
	cout << endl;
}
void test01() 
{
	set<int>s1;//默认构造
	s1.insert(4);
	s1.insert(2);
	s1.insert(3);
	s1.insert(1);
	//自动排序
	printSet(s1);
	s1.erase(s1.begin());
	printSet(s1);
	s1.erase(3);
	printSet(s1);
	s1.clear();//s1.erase(s1.begin(), s1.end());
	printSet(s1);
}

void test02()
{

}
int main() {
	
	test01();
	cout << "----------------" << endl;
	test02();
	system("pause");
	return 0;
}

总结:

  • 插入 — insert
  • 删除 — erase
  • 清空 — clear

5 set查找和统计

功能描述:

  • 对set容器进行查找数据以及统计数据

函数原型:

  • find(key); //查找key是否存在,若存在,返回该键的元素的迭代器;若不存在,返回set.end();
  • count(key); //统计key的元素个数
#include<iostream>
using namespace std;
#include<set>
#include<string>
void printSet(set<int>& s)
{
	for (set<int>::iterator it = s.begin(); it != s.end(); it++)
	{
		cout << *it << " ";
	}
	cout << endl;
}
void test01() 
{
	set<int>s1;//默认构造
	s1.insert(4);
	s1.insert(2);
	s1.insert(3);
	s1.insert(1);
	//自动排序
	printSet(s1);
	set<int>::iterator pos = s1.find(1);
	if (pos == s1.end())
	{
		cout << "未找到!" << endl;
	}
	else
	{
		cout << "找到了!" << *pos << endl;
	}
	//统计
	int num = s1.count(1);
	//set中只能count   0和1,但是multiset可以找到 多个数字。
	cout<< "num = " << num << endl;
}



void test02()
{

}
int main() {
	
	test01();
	cout << "----------------" << endl;
	test02();
	system("pause");
	return 0;
}

总结:

  • 查找 — find (返回的是迭代器)
  • 统计 — count (对于set,结果为0或者1)

6 set和multiset区别

学习目标:

  • 掌握set和multiset的区别

区别:

  • set不可以插入重复数据,而multiset可以
  • set插入数据的同时会返回插入结果,表示插入是否成功
  • multiset不会检测数据,因此可以插入重复数据
#include<iostream>
using namespace std;
#include<set>
#include<string>
void printSet(set<int>& s)
{
	for (set<int>::iterator it = s.begin(); it != s.end(); it++)
	{
		cout << *it << " ";
	}
	cout << endl;
}
void test01() 
{
	set<int>s1;//默认构造
	pair<set<int>::iterator,bool>ret=s1.insert(4);
	if (ret.second)
	{
		cout << "第一次插入成功" << endl;
	}
	else
	{
		cout << "第一次插入失败" << endl;
	}
	ret = s1.insert(4);
	if (ret.second)
	{
		cout << "第2次插入成功" << endl;
	}
	else
	{
		cout << "第2次插入失败" << endl;
	}
	//multiset
	multiset<int>ms;
	ms.insert(1);
	ms.insert(1);
	ms.insert(1);
	for (multiset<int>::iterator it = ms.begin(); it != ms.end(); it++)
	{
		cout << *it << " ";
	}
	cout << endl;
}



void test02()
{

}
int main() {
	
	test01();
	cout << "----------------" << endl;
	test02();
	system("pause");
	return 0;
}

在这里插入图片描述

总结:

  • 如果不允许插入重复数据可以利用set
  • 如果需要插入重复数据利用multiset

7 pair对组创建

功能描述:

  • 成对出现的数据,利用对组可以返回两个数据

两种创建方式:

  • pair<type, type> p ( value1, value2 );
  • pair<type, type> p = make_pair( value1, value2 );
#include<iostream>
using namespace std;
#include<string>
void test01() 
{
	pair<string, int>p("刘备",20);
	cout << "姓名:" << p.first << " age:" << p.second << endl;
	pair<string, int>p2 = make_pair("关羽", 24);
	cout << "姓名:" << p2.first << " age:" << p2.second << endl;
}
void test02()
{
}
int main() {
	
	test01();
	cout << "----------------" << endl;
	test02();
	system("pause");
	return 0;
}

在这里插入图片描述

总结:

两种方式都可以创建对组,记住一种即可

8 set容器排序

学习目标:

  • set容器默认排序规则为从小到大,掌握如何改变排序规则

主要技术点:

  • 利用**仿函数,**可以改变排序规则

示例一 set存放内置数据类型

#include<iostream>
using namespace std;
#include<set>
#include<string>
void printSet(set<int>& s)
{
	for (set<int>::iterator it = s.begin(); it != s.end(); it++)
	{
		cout << *it << " ";
	}
	cout << endl;
}
class Mycompare
{
public:
	bool operator()(int v1, int v2)
	{
		return v1 > v2;
	}
};
void test01() 
{
	set<int>s1;
	s1.insert(2);
	s1.insert(1);
	s1.insert(3);
	s1.insert(4);
	//默认从小到大
	printSet(s1);
	//指定排序规则
	set<int, Mycompare>s2;
	s2.insert(2);
	s2.insert(1);
	s2.insert(3);
	s2.insert(4);
	for (set<int,Mycompare>::iterator it = s2.begin(); it != s2.end(); it++)
	{
		cout << *it << " ";
	}
	cout << endl;
}
void test02()
{

}
int main() {

	test01();
	cout << "----------------" << endl;
	test02();
	system("pause");
	return 0;
}

总结:利用仿函数可以指定set容器的排序规则

示例二 set存放自定义数据类型

#include <set>
#include <string>

class Person
{
public:
	Person(string name, int age)
	{
		this->m_Name = name;
		this->m_Age = age;
	}

	string m_Name;
	int m_Age;

};
class comparePerson
{
public:
	bool operator()(const Person& p1, const Person &p2)
	{
		//按照年龄进行排序  降序
		return p1.m_Age > p2.m_Age;
	}
};

void test01()
{
	set<Person, comparePerson> s;

	Person p1("刘备", 23);
	Person p2("关羽", 27);
	Person p3("张飞", 25);
	Person p4("赵云", 21);

	s.insert(p1);
	s.insert(p2);
	s.insert(p3);
	s.insert(p4);

	for (set<Person, comparePerson>::iterator it = s.begin(); it != s.end(); it++)
	{
		cout << "姓名: " << it->m_Name << " 年龄: " << it->m_Age << endl;
	}
}
int main() {

	test01();

	system("pause");

	return 0;
}

总结:

对于自定义数据类型,set必须指定排序规则才可以插入数据

可算学完了set~~
撒花!

PS:

麦香E站,分享我在大学期间的学习资源,学习记录,将涵盖数学分享,比赛经历,科研之路,信通学习,编程进阶,外语学习,生活理财等多方面知识。
欢迎关注微信公众号:麦香E站,即时分享EE大学生修行之道~

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值