📜  在C++ STL中设置:: clear

📅  最后修改于: 2021-05-30 10:03:30             🧑  作者: Mango

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

设置:: clear()

clear()函数用于删除set容器的所有元素,从而使其大小为0。

句法 :

setname.clear()
Parameters :
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 
#include 
using namespace std;
  
int main()
{
    set 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 
#include 
using namespace std;
  
int main()
{
    set 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)

要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程”