当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ set::swap()用法及代码示例


集是一种关联容器,其中每个元素都必须是唯一的,因为元素的值可以标识它。元素的值一旦添加到集合中就无法修改,尽管可以删除并添加该元素的修改后的值。

set::swap()
此函数用于交换两个集合的内容,但是集合的类型必须相同,尽管大小可能会有所不同。

用法:


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 <bits/stdc++.h> 
using namespace std; 
  
int main() 
{ 
    // Take any two sets 
    set<int> set1{ 1, 2, 3, 4 }; 
    set<int> 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

时间复杂度:不变



相关用法


注:本文由纯净天空筛选整理自AKASH GUPTA 6大神的英文原创作品 set::swap() in C++ STL。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。