C++ std swap()函数

C++ std swap()函数

C++ std 交换(swap)(集合)(set)C++中集合(set)的一个 非成员函数 。它用于交换(或交换)两个集合(即x和y)的内容,但两个集合必须是相同类型的,尽管大小可能不同。

语法

template <class T, class Compare, class Alloc>
  void swap (set<T,Compare,Alloc>& x, set<T,Compare,Alloc>& y);

参数

x :第一个集合对象。

y :相同类型的第二个集合对象。

返回值

复杂度

常数。

迭代器有效性

所有引用和指针指向两个容器中元素的迭代器仍然有效。

注意,结束迭代器不指向元素并可能无效。

数据竞争

容器x和y都被修改。

调用不会访问任何包含的元素。

异常安全性

这个函数不会抛出异常。

示例1

下面是一个简单的示例,展示了如何将一个集合的元素与另一个集合交换:

#include <iostream>
#include <set>

using namespace std;

int main(void) {
   set<char> m1 = {'a','b','c','d'};

   set<char> m2;

   swap(m1, m2);

   cout << "Set contains following elements" << endl;

   for (auto it = m2.begin(); it != m2.end(); ++it)
      cout << *it<< endl;

   return 0;
}

输出:

Set contains following elements
a
b
c
d

在上面的示例中,集合 m1 有五个元素,而 m2 是空的。当你把 m1 和 m2 互换时,m1 的所有元素都会被调换到 m2 中。

示例2

让我们看一个简单的示例来交换两个集合的内容:

#include <iostream>
#include <set>

using namespace std;

int main ()
{
  set<int> set1,set2;

  set1= {100,200};

  set2 = {110, 220, 330};

  swap(set1,set2);

  cout << "set1 contains:\n";
  for (set<int>::iterator it=set1.begin(); it!=set1.end(); ++it)
    cout << *it<< '\n';

  cout << "set2 contains:\n";
  for (set<int>::iterator it=set2.begin(); it!=set2.end(); ++it)
    cout << *it<< '\n';

  return 0;
}

输出:

set1 contains:
110
220
330
set2 contains:
100
200

在上面的示例中,两个集合set1和set2的内容被交换。

示例3

让我们看一个简单的示例来交换两个集合的内容:

#include <iostream>
#include <set>

using namespace std;

 int main ()
{
  int myints[]={12,75,10,32,20,25};
  set<int> first (myints,myints+3);     // 10,12,75
  set<int> second (myints+3,myints+6);  // 20,25,32

  swap(first,second);

  cout << "first contains:";
  for (set<int>::iterator it=first.begin(); it!=first.end(); ++it)
    cout << ' ' << *it;
  cout << '\n';

  cout << "second contains:";
  for (set<int>::iterator it=second.begin(); it!=second.end(); ++it)
    cout << ' ' << *it;
  cout << '\n';

  return 0;
}

输出:

first contains: 20 25 32
second contains: 10 12 75

示例4

让我们看一个简单的示例:

#include <iostream>
#include <string>
#include <set>

using namespace std;

void show(const char *msg, set<int> mp);

int main() {
  set<int> m1, m2;

  m1.insert(100);
  m1.insert(300);
  m1.insert(200);

  // Exchange the contents of m1 and m2.
  cout << "Exchange m1 and m2.\n";
  swap(m1,m2);
  show("Contents of m2: ", m2);
  show("Contents of m1: ", m1);

 // Clear m1.
  m1.clear();
  if(m1.empty()) cout << "m1 is now empty.";

  return 0;
}

// Display the contents of a set<string, int> by using an iterator.
void show(const char *msg, set<int> mp) {
  set<int>::iterator itr;

  cout << msg << endl;
  for(itr=mp.begin(); itr != mp.end(); ++itr)
    cout << "  " << *itr<< endl;
  cout << endl;
}

输出:

Exchange m1 and m2.
Contents of m2: 
  100
  200
  300

Contents of m1: 

m1 is now empty.

在上面的示例中,m1集合的内容被交换到m2集合中,并在交换后清空了m1集合。

Camera课程

Python教程

Java教程

Web教程

数据库教程

图形图像教程

办公软件教程

Linux教程

计算机教程

大数据教程

开发工具教程