C++ Unordered_set 库 - 空


描述

它返回一个bool值,指示unordered_set容器是否为空,即其大小是否为0。

宣言

以下是 std::unordered_set::empty 的声明。

C++11

bool empty() const noexcept;

参数

没有任何

返回值

如果容器大小为 0,则返回 true,否则返回 false。

例外情况

如果任何元素比较对象抛出异常,则抛出异常。

请注意,无效参数会导致未定义的行为。

时间复杂度

恒定时间。

例子

以下示例显示了 std::unordered_set::empty 的用法。

#include <iostream>
#include <string>
#include <unordered_set>

int main () {
   std::unordered_set<std::string> first = {"sairam","krishna","mammahe"};
   std::unordered_set<std::string> second;
   std::cout << "first " << (first.empty() ? "is empty" : "is not empty" ) << std::endl;
   std::cout << "second " << (second.empty() ? "is empty" : "is not empty" ) << std::endl;
   return 0;
}

让我们编译并运行上面的程序,这将产生以下结果 -

first is not empty
second is empty
无序集.htm