📜  C++ STL中的unordered_set empty()函数

📅  最后修改于: 2021-05-30 09:48:15             🧑  作者: Mango

unordered_set :: empty是C++ STL中的内置函数,用于检查unordered_set容器是否为空。如果unordered_set容器为空,则返回True,否则返回False。

语法

map_name.empty()

参数:该函数不接受任何参数。

返回值:如果unordered_set容器为空,则返回布尔值True,否则返回false。

下面的程序说明了上述函数:

程序1:

// C++ program to illustrate the
// unordered_set::empty function
#include 
#include 
using namespace std;
  
int main()
{
  
    // declaration
    unordered_set sample;
  
    // Check whether the unordered_set is empty
    if (sample.empty() == true)
        cout << "true" << endl;
    else
        cout << "false" << endl;
  
    // Insert a value
    sample.insert(5);
  
    // Now check whether it is empty
    if (sample.empty() == true)
        cout << "true" << endl;
    else
        cout << "false" << endl;
  
    return 0;
}
输出:
true
false

程式2:

// C++ program to illustrate the
// unordered_set::empty function
#include 
#include 
using namespace std;
  
int main()
{
    // declaration
    unordered_set uset;
  
    // Insert a value
    uset.insert({ 5, 6, 7, 8 });
    // Check whether the unordered_set is empty
    if (uset.empty() == true)
        cout << "true" << endl;
    else
        cout << "false" << endl;
  
    return 0;
}
输出:
false
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程”