C++ Unordered_set 库 - 运算符


描述

这些是 unordered_set 的关系运算符。

宣言

以下是 std::operators(unordered_set) 的声明。

C++11

template <class Key, class Hash, class Pred, class Alloc>
  bool operator== ( const unordered_set<Key,Hash,Pred,Alloc>& lhs,
                    const unordered_set<Key,Hash,Pred,Alloc>& rhs );

参数

lhs, rhs - 无序列表容器。

返回值

如果条件成立则返回 true,否则返回 false。

例外情况

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

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

时间复杂度

恒定时间。

例子

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

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

int main () {
   std::unordered_set<std::string>
      a = {"goole","yahoo","verizon"},
      b = {"goole","verizon","yahoo"},
      c = {"verizon","goole","yahoo","oracle"};

   if (a==b) std::cout << "a and b are equal\n";
   if (b!=c) std::cout << "b and c are not equal\n";

   return 0;
}

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

a and b are equal
b and c are not equal
无序集.htm