集是一种关联容器,其中每个元素都必须是唯一的,因为元素的值可以标识它。尽管可以删除并添加该元素的修改后的值,但是一旦将元素的值添加到集合中就无法对其进行修改。
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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。