C ++ std swap(set)是C ++中set的非成員函數(shù)。這用于交換(或替換)兩個集合(即x和y)的內(nèi)容,但是兩個集合的類型必須相同,集合大小可以不同。
template <class T, class Compare, class Alloc> void swap (set<T,Compare,Alloc>& x, set<T,Compare,Alloc>& y);
x:第一個set集合的對象。
y:相同類型的第二個對象。
沒有
不變。
引用兩個容器中元素的所有迭代器,引用和指針均保持有效。
請注意,結(jié)束迭代器不引用元素,并且可能無效。
容器x和y均被修改。
調(diào)用不包含任何包含的元素。
此函數(shù)不會引發(fā)異常。
讓我們看一個簡單的示例,將一組元素交換為另一組元素:
#include <iostream> #include <set> using namespace std; int main(void) { set<char> m1 = {'a','b','c','d'}; set<char> m2; swap(m1, m2); cout << "集合包含以下元素" << endl; for (auto it = m2.begin(); it != m2.end(); ++it) cout << *it<< endl; return 0; }
輸出:
集合包含以下元素 a b c d
在上面的示例中,集合m1具有五個元素,而m2為空。當(dāng)您將m1交換為m2時,m1的所有元素都將交換為m2。
讓我們看一個簡單的示例來交換兩個集合的內(nèi)容:
#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 包含:\n"; for (set<int>::iterator it=set1.begin(); it!=set1.end(); ++it) cout << *it<< '\n'; cout << "set2 包含:\n"; for (set<int>::iterator it=set2.begin(); it!=set2.end(); ++it) cout << *it<< '\n'; return 0; }
輸出:
set1 包含: 110 220 330 set2 包含: 100 200
在上面的示例中,兩個集合(即set1和set2)的內(nèi)容相互交換。
讓我們看一個簡單的示例來交換兩個集合的內(nèi)容:
#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 包含:"; for (set<int>::iterator it=first.begin(); it!=first.end(); ++it) cout << ' ' << *it; cout << '\n'; cout << "second 包含:"; for (set<int>::iterator it=second.begin(); it!=second.end(); ++it) cout << ' ' << *it; cout << '\n'; return 0; }
輸出:
first 包含: 20 25 32 second 包含: 10 12 75
讓我們看一個簡單的實例:
#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); // 交換m1和m2的內(nèi)容。 cout << "交換m1和m2的內(nèi)容。\n"; swap(m1,m2); show("m2內(nèi)容: ", m2); show("m1內(nèi)容: ", m1); // Clear m1. m1.clear(); if(m1.empty()) cout << "m1 is now empty."; return 0; } // 通過使用迭代器顯示set <string,int>的內(nèi)容。 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; }
輸出:
交換m1和m2的內(nèi)容。 m2內(nèi)容: 100 200 300 m1內(nèi)容: m1 is now empty.
在上面的示例中,集合m1的內(nèi)容被交換為集合m2,并且在交換了m1之后,集合已被清除。