集是一種關聯容器,其中每個元素都必須是唯一的,因為元素的值可以標識它。盡管可以刪除並添加該元素的修改後的值,但是一旦將元素的值添加到集合中就無法對其進行修改。
set::clear()
clear() 函數用於移除集合容器的所有元素,從而使其大小為 0。
用法:
setname.clear() 參數: No parameters are passed. Result: All the elements of the set are removed ( or destroyed )
例子:
Input :set{1, 2, 3, 4, 5}; set.clear(); Output:set{} Input :set{}; set.clear(); Output:set{}
錯誤和異常
1.它沒有異常拋出保證。
2.傳遞參數時顯示錯誤。
// INTEGER SET
// CPP program to illustrate
// Implementation of clear() function
#include <iostream>
#include <set>
using namespace std;
int main()
{
set<int> myset{ 1, 2, 3, 4, 5 };
myset.clear();
// Set becomes empty
// Printing the Set
for (auto it = myset.begin();
it != myset.end(); ++it)
cout << ' ' << *it;
return 0;
}
輸出:
No Output
// CHARACTER SET
// CPP program to illustrate
// Implementation of clear() function
#include <iostream>
#include <set>
using namespace std;
int main()
{
set<char> myset{ 'A', 'b', 'd', 'e' };
myset.clear();
// Set becomes empty
// Printing the Set
for (auto it = myset.begin();
it != myset.end(); ++it)
cout << ' ' << *it;
return 0;
}
輸出:
No Output
時間複雜度:線性,即 O(n)
相關用法
注:本文由純淨天空篩選整理自AyushSaxena大神的英文原創作品 set::clear in C++ STL。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。