C++ STL中的unordered_set empty()函数
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 <iostream>
#include <unordered_set>
using namespace std;
int main()
{
// declaration
unordered_set<int> 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 <iostream>
#include <unordered_set>
using namespace std;
int main()
{
// declaration
unordered_set<int> 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
时间复杂度: O(1)