简介:
- 所有元素都会在插入时自动被排序
本质:
- set / multiset 属于关联式容器,底层结构是用二叉树实现。
set 和 multiset 区别:
功能描述:
构造:
set<T> st; // 默认构造函数
set(const set &st); // 拷贝构造函数
赋值:
set& operator=(const set &st); // 重载等号操作符
#include <iostream>
#include <set>
using namespace std;
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(10);
s1.insert(20);
s1.insert(30);
printSet(s1);
set<int> s2(s1);
printSet(s2);
set<int> s3;
s3 = s2;
printSet(s3);
}
int main() {
test01();
system("pause");
return 0;
}
总结:
功能描述:
函数原型:
size(); // 返回容器中元素的数目
empty(); // 判断容器是否为空
swap(st); // 交换两个集合容器
#include <iostream>
#include <set>
using namespace std;
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(10);
s1.insert(20);
s1.insert(30);
if (s1.empty()) {
cout << "s1为空" << endl;
}
else {
cout << "s1不为空" << endl;
cout << "s1的大小为:" << s1.size() << endl;
}
}
void test02() {
set<int> s1;
s1.insert(10);
s1.insert(20);
s1.insert(30);
set<int> s2;
s1.insert(40);
s1.insert(50);
s1.insert(60);
cout << "交换前:" << endl;
printSet(s1);
printSet(s2);
cout << endl;
cout << "交换后:" << endl;
s1.swap(s2);
printSet(s1);
printSet(s2);
}
int main() {
test01();
test02();
system("pause");
return 0;
}
总结:
功能描述:
函数原型:
insert(elem); // 在容器中插入元素。
clear(); // 清除所有元素
erase(pos); // 删除 pos 迭代器所指的元素,返回下一个元素的迭代器。
erase(beg, end); // 删除区间 [beg,end) 的所有元素 ,返回下一个元素的迭代器。
erase(elem); // 删除容器中值为 elem 的元素。
#include <iostream>
#include <set>
using namespace std;
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(10);
s1.insert(20);
s1.insert(30);
printSet(s1);
// 删除
s1.erase(s1.begin());
printSet(s1);
s1.erase(30);
printSet(s1);
// 清空
// s1.erase(s1.begin(),s1.end());
s1.clear();
printSet(s1);
}
int main() {
test01();
system("pause");
return 0;
}
总结:
功能描述:
函数原型:
find(key); // 查找key是否存在,若存在,返回该键的元素的迭代器;若不存在,返回
set.end();
count(key); // 统计key的元素个数
#include <iostream>
#include <set>
using namespace std;
void test01() {
set<int> s1;
s1.insert(10);
s1.insert(20);
s1.insert(30);
set<int>::iterator pos = s1.find(30);
if (pos != s1.end()) {
cout << "找到了元素!" << *pos << endl;
}
else {
cout << "未找到元素" << endl;
}
//统计
int num = s1.count(30);
cout << "num = " << num << endl;
}
int main() {
test01();
system("pause");
return 0;
}
总结:
学习目标:
区别:
#include <iostream>
#include <set>
using namespace std;
void test01() {
set<int> s;
pair<set<int>::iterator, bool> ret = s.insert(10);
if (ret.second) {
cout << "第一次插入成功!" << endl;
}
else {
cout << "第一次插入失败!" << endl;
}
ret = s.insert(10);
if (ret.second) {
cout << "第二次插入成功!" << endl;
}
else {
cout << "第二次插入失败!" << endl;
}
multiset<int>ms;
ms.insert(10);
ms.insert(10);
for (set<int>::iterator it = ms.begin(); it != ms.end(); ++it) {
cout << *it << " ";
}
cout << endl;
}
int main() {
test01();
system("pause");
return 0;
}
总结:
功能描述:
两种创建方式:
pair<type, type> p(value1, value2);
pair<type, type> p = make_pair(value1, value2);
#include <iostream>
#include <string>
#include <set>
using namespace std;
// 对组创建
void test01() {
pair<string, int> p(string("Tom"), 20);
cout << "姓名:" << p.first << " 年龄:" << p.second << endl;
pair<string, int> p2 = make_pair("Jerry", 20);
cout << "姓名:" << p2.first << " 年龄:" << p2.second << endl;
}
int main() {
test01();
system("pause");
return 0;
}
学习目标:
主要技术点:
示例一:set 存放内置数据类型
#include <iostream>
#include <set>
using namespace std;
class MyCompare
{
public:
bool operator()(int v1, int v2)const {
return v1 > v2;
}
};
void test01()
{
set<int> s1;
s1.insert(10);
s1.insert(40);
s1.insert(20);
s1.insert(30);
s1.insert(50);
// 默认从小到大
for (set<int>::iterator it = s1.begin(); it != s1.end(); it++) {
cout << *it << " ";
}
cout << endl;
// 指定排序规则
set<int, MyCompare> s2;
s2.insert(10);
s2.insert(40);
s2.insert(20);
s2.insert(30);
s2.insert(50);
for (set<int, MyCompare>::iterator it = s2.begin(); it != s2.end();
it++) {
cout << *it << " ";
}
cout << endl;
}
int main() {
test01();
system("pause");
return 0;
}
总结:
示例二:set 存放自定义数据类型
#include <iostream>
#include <set>
using namespace std;
class Person {
public:
Person(string name, int age) {
this->m_name = name;
this->m_age = age;
}
public:
string m_name;
int m_age;
};
class compareperson {
public:
bool operator()(const Person& p1, const Person& p2)const {
return p1.m_age > p2.m_age;
}
};
void test01() {
set<Person, compareperson> s;
Person p1("张飞", 25);
Person p2("关羽", 27);
Person p3("刘备", 23);
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;
}
总结: