📜  C++ STL中的unordered_set运算符

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

Unordered_set在C++ STL中提供了两个运算符。这些都是:
句法:

1. (unordered_set &lhs == unordered_set &rhs)
2. (unordered_set &lhs != unordered_set &rhs)

这些运算符将在下面详细讨论:

‘==’是C++ STL中的一个运算符,它在两个无序集合之间执行相等比较操作,而unordered_set :: 运算符==是相同的对应运算符函数。

句法:

(unordered_set &uset1 == unordered_set &uset2)

参数:此运算符函数将要比较的两个无序集合uset1uset2作为参数。

返回值:比较两个集合后,此方法返回布尔结果值。比较过程如下:

  • 首先比较它们的大小。
  • 然后在ust2中查找ust1中的每个元素

如果两个条件都满足,则返回true值;如果不满足条件,则在任何时候返回false值。

下面的程序说明了C++中的unordered_set ::运算符==。

#include 
#include 
using namespace std;
  
int main()
{
    // Initilize three unordered sets
    unordered_set
        sample1 = { 10, 20, 30, 40, 50 };
    unordered_set
        sample2 = { 10, 30, 50, 40, 20 };
    unordered_set
        sample3 = { 10, 20, 30, 50, 60 };
  
    // Compare sample1 and sample2
    if (sample1 == sample2) {
  
        cout << "sample1 and "
             << "sample2 are equal."
             << endl;
    }
    else {
  
        cout << "sample1 and "
             << "sample2 are not equal."
             << endl;
    }
  
    // Compare sample2 and sample3
    if (sample2 == sample3) {
  
        cout << "sample2 and "
             << "sample3 are equal."
             << endl;
    }
    else {
  
        cout << "sample2 and "
             << "sample3 are not equal."
             << endl;
    }
  
    return 0;
}
输出:
sample1 and sample2 are equal.
sample2 and sample3 are not equal.

!=是C++ STL中的关系运算符,用于比较unordered_set容器之间的相等性和不相等性。比较是通过以下过程完成的:

  1. 首先,比较大小。
  2. 然后,在另一个容器中寻找其中一个容器中的每个元素。

句法:

unordered_set1 != unordered_set2 

参数:此方法将两个unordered_set容器unordered_set1unordered_set2作为要检查是否相等的参数。

返回值:该方法返回

  • true:如果运算符左右两侧的unordered_set容器都相等。
  • false:如果运算符左右两侧的unordered_set容器不相等。

以下示例说明了!=运算符:

例子:

// C++ program to illustrate
// unordered_set operator!= 
  
#include 
#include 
#include 
using namespace std;
  
int main()
{
    unordered_set
        a = { "C++", "Java", "Python" },
        b = { "Java", "Python", "C++" },
        c = { "C#", "Python", "Java" };
  
    if (a != b) {
        cout << "a and b are not equal\n";
    }
    else {
        cout << "a and b are equal\n";
    }
  
    if (a != c) {
        cout << "a and c are not equal\n";
    }
    else {
        cout << "a and c are equal\n";
    }
  
    return 0;
}
输出:
a and b are equal
a and c are not equal

unordered_set = C++ STL中的运算符

‘=’是C++ STL中的一个运算符,它将一个unordered_set复制(或移动)到另一个unordered_set,并且unordered_set :: 运算符=是相应的运算符函数。此函数有三个版本。

  • 第一个版本将unordered_set的引用作为参数并将其复制到unordered_set。
  • 第二个版本执行移动分配,即,它将unordered_set的内容移动到另一个unordered_set。
  • 第三个版本将初始化列表的内容分配给unordered_set。

句法

uset.operator= ( unordered_set& us )
uset.operator= ( unordered_set&& us )
uset.operator= ( initializer list )

参数:

  • 第一个版本将unordered_set的引用作为参数。
  • 第二个版本将unordered_set的r值引用作为参数。
  • 第三个版本将一个初始化程序列表作为参数。

返回值:它们都返回此指针的值(* this)。

下面的程序说明了C++中的unordered_set :: 运算符=
程序:

// C++ code to illustrate the method 
// unordered_set::operator=()
#include 
#include 
using namespace std;
  
// merge function
template 
T merge(T a, T b)
{
    T t(a);
    t.insert(b.begin(), b.end());
    return t;
}
  
int main()
{
    unordered_set sample1, sample2, sample3;
      
    // List initialization
    sample1 = { 7, 8, 9 };
    sample2 = { 9, 10, 11, 12 };
      
    // Merge both lists
    sample3 = merge(sample1, sample2);
      
    // copy assignment 
    sample1 = sample3;
  
    // Print the unordered_set list
    for (auto it = sample1.begin(); it != sample1.end(); ++it)
        cout << *it << " ";
    cout << endl;
  
    for (auto it = sample2.begin(); it != sample2.end(); ++it)
        cout << *it << " ";
    cout << endl;
  
    for (auto it = sample3.begin(); it != sample3.end(); ++it)
        cout << *it << " ";
    cout << endl;
}
输出:
10 11 12 7 8 9 
12 11 10 9 
10 11 12 7 8 9
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程”