当前位置:   article > 正文

【C++】STL 容器 - set 集合容器 ③ ( set 集合容器常用 api 简介 | 删除元素 | 删除指定值的元素 | 删除指定迭代器位置元素 | 删除指定迭代器范围元素 )_c++ set删除指定元素

c++ set删除指定元素






一、删除元素



1、删除指定值的元素 - erase 函数


在 C++ 语言的 STL 标准模板库 中 , set 集合容器 是一个有序的集合 , 存储的元素值都是唯一的 , 不重复的 ;

调用 set 集合容器的 erase 函数 , 可以删除 集合容器 中指定值 的元素 ;

上述 set#erase 函数原型如下 :

size_type erase (const key_type& k);
  • 1
  • 参数解析 :
    • key_type 是 set 中元素的类型 ;
    • k 是要删除的元素的键 ;
  • 返回值解析 : 返回值是一个 size_type , 表示被删除的元素数量 ;
    • 在 set 集合容器中返回值肯定是 0 或 1 ;
    • 在 multiset 集合中 , 返回值可能大于 1 ;
  • 使用示例 :
	// set 集合容器
	// 初始化列表中的顺序会自动排序
	set<int> se{ 9, 5, 7 };

	// 删除元素 7
	se.erase(7);
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

代码示例 :

#include "iostream"
using namespace std;
#include "set"

// 声明遍历打印 set 集合容器的函数
void printS(set<int>& se);

int main() {

	// set 集合容器
	// 初始化列表中的顺序会自动排序
	set<int> se{ 9, 5, 7 };

	// 删除元素 7
	se.erase(7);

	// 打印 set 集合容器
	printS(se);

	// 控制台暂停 , 按任意键继续向后执行
	system("pause");

	return 0;
};

// 遍历打印 set 集合容器元素
void printS(set<int>& se) {
	// 遍历 set 集合容器
	for (set<int>::iterator it = se.begin(); it != se.end(); it++)
	{
		cout << *it << " ";
	}
	// 回车换行
	cout << endl;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35

执行结果 : 在代码中 元素 7 被删除了 , 只打印出了 5 , 9 两个元素 ;

5 9
Press any key to continue . . .
在这里插入图片描述


2、删除指定迭代器位置的元素 - erase 函数


set#erase 函数 还可以传入一个 指向指定元素位置的 迭代器 对象 , 作为参数 , 删除该迭代器指向的元素 ;

函数原型如下 :

iterator erase (iterator position);
  • 1
  • 参数解析 : position 参数是一个指向要删除元素的迭代器 ;
  • 返回值解析 : 该函数的返回值是一个迭代器 , 指向被删除元素之后的下一个元素 ;
  • 使用示例 : 在下面的示例中 , 删除了集合容器中的第二个元素 ;
	// set 集合容器
	// 初始化列表中的顺序会自动排序
	set<int> se{ 9, 5, 7 };

	// 删除集合容器中第二个元素
	se.erase(++se.begin());
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

完整代码示例 :

#include "iostream"
using namespace std;
#include "set"

// 声明遍历打印 set 集合容器的函数
void printS(set<int>& se);

int main() {

	// set 集合容器
	// 初始化列表中的顺序会自动排序
	set<int> se{ 9, 5, 7 };

	// 打印 set 集合容器
	printS(se);

	// 删除集合容器中第二个元素
	se.erase(++se.begin());

	// 打印 set 集合容器
	printS(se);

	// 控制台暂停 , 按任意键继续向后执行
	system("pause");

	return 0;
};

// 遍历打印 set 集合容器元素
void printS(set<int>& se) {
	// 遍历 set 集合容器
	for (set<int>::iterator it = se.begin(); it != se.end(); it++)
	{
		cout << *it << " ";
	}
	// 回车换行
	cout << endl;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38

执行结果 :

5 7 9
5 9
Press any key to continue . . .

在这里插入图片描述


3、删除指定迭代器范围的元素 - erase 函数


调用 set#erase 函数 , 可以传入两个迭代器参数 , 这两个迭代器划定了本集合容器的一个范围 , 执行该函数可删除该范围的所有元素 ;

函数原型如下 :

iterator erase (iterator first, iterator last);
  • 1
  • 参数解析 : first 和 last 是要删除元素范围的迭代器 ;
  • 返回值解析 : 返回值是一个迭代器 , 指向被删除范围之后的下一个元素 ;
  • 使用示例 : 下面的代码 , 删除集合容器中第二个元素和第三个元素 ;
	// set 集合容器
	// 初始化列表中的顺序会自动排序
	set<int> se{ 9, 5, 2, 7 };

	// 删除集合容器中第二个元素和第三个元素
	se.erase(++se.begin(), --se.end());
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

完整代码示例 :

#include "iostream"
using namespace std;
#include "set"

// 声明遍历打印 set 集合容器的函数
void printS(set<int>& se);

int main() {

	// set 集合容器
	// 初始化列表中的顺序会自动排序
	set<int> se{ 9, 5, 2, 7 };

	// 打印 set 集合容器
	printS(se);

	// 删除集合容器中第二个元素和第三个元素
	se.erase(++se.begin(), --se.end());

	// 打印 set 集合容器
	printS(se);

	// 控制台暂停 , 按任意键继续向后执行
	system("pause");

	return 0;
};

// 遍历打印 set 集合容器元素
void printS(set<int>& se) {
	// 遍历 set 集合容器
	for (set<int>::iterator it = se.begin(); it != se.end(); it++)
	{
		cout << *it << " ";
	}
	// 回车换行
	cout << endl;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38

执行结果 :

2 5 7 9
2 9
Press any key to continue . . .

在这里插入图片描述


4、删除集合中的所有元素 - clear 函数


调用 set 集合容器的 clear 函数 , 可以删除容器中的所有元素 ;

函数原型如下 :

void clear();
  • 1

该函数没有参数和返回值 , 使用示例如下 :

	// set 集合容器
	// 初始化列表中的顺序会自动排序
	set<int> se{ 9, 5, 2, 7 };

	// 删除集合容器中所有元素
	se.clear();
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

完整代码示例 :

#include "iostream"
using namespace std;
#include "set"

// 声明遍历打印 set 集合容器的函数
void printS(set<int>& se);

int main() {

	// set 集合容器
	// 初始化列表中的顺序会自动排序
	set<int> se{ 9, 5, 2, 7 };

	// 打印 set 集合容器
	printS(se);

	// 删除集合容器中所有元素
	se.clear();

	// 打印 set 集合容器
	printS(se);

	// 控制台暂停 , 按任意键继续向后执行
	system("pause");

	return 0;
};

// 遍历打印 set 集合容器元素
void printS(set<int>& se) {
	// 遍历 set 集合容器
	for (set<int>::iterator it = se.begin(); it != se.end(); it++)
	{
		cout << *it << " ";
	}
	// 回车换行
	cout << endl;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38

执行结果 :

2 5 7 9

Press any key to continue . . .
  • 1
  • 2
  • 3

在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/344188
推荐阅读
相关标签
  

闽ICP备14008679号