集是一种关联容器,其中每个元素都必须是唯一的,因为元素的值可以标识它。元素的值一旦添加到集合中就无法修改,尽管可以删除并添加该元素的修改后的值。
设置::交换()
此函数用于交换两个集合的内容,但是集合的类型必须相同,尽管大小可能会有所不同。
句法:
set1.swap(set2)
返回值:无
例子:
Input : set1 = {1, 2, 3, 4}
set2 = {5, 6, 7, 8}
set1.swap(set2);
Output : set1 = {5, 6, 7, 8}
set2 = {1, 2, 3, 4}
Input : set1 = {'a', 'b', 'c', 'd'}
set2 = {'w', 'x', 'y', 'z'}
set1.swap(set2);
Output : set1 = {'w', 'x', 'y', 'z'}
set2 = {'a', 'b', 'c', 'd'}
// CPP program to illustrate
// Implementation of swap() function
#include
using namespace std;
int main()
{
// Take any two sets
set set1{ 1, 2, 3, 4 };
set set2{ 5, 6, 7, 8 };
// Swap elements of sets
set1.swap(set2);
// Print the first set
cout << "set1 = ";
for (auto it = set1.begin();
it != set1.end(); ++it)
cout << ' ' << *it;
// Print the second set
cout << endl
<< "set2 = ";
for (auto it = set2.begin();
it != set2.end(); ++it)
cout << ' ' << *it;
return 0;
}
输出:
set1 = 5 6 7 8
set2 = 1 2 3 4
时间复杂度:恒定
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。