当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ unordered_set operators用法及代码示例


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

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

这些操作符将在下面详细讨论:

unordered_set == C++ STL中的运算符

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



用法:

(unordered_set &uset1 == unordered_set &uset2)

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

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

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

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

以下示例程序旨在说明C++中的unordered_set::operator ==。

#include <iostream> 
#include <unordered_set> 
using namespace std; 
  
int main() 
{ 
    // Initilize three unordered sets 
    unordered_set<int> 
        sample1 = { 10, 20, 30, 40, 50 }; 
    unordered_set<int> 
        sample2 = { 10, 30, 50, 40, 20 }; 
    unordered_set<int> 
        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!=运算符

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

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

用法:

unordered_set1 != unordered_set2 

参数:该方法将两个unordered_set容器unordered_set1和unordered_set2作为要检查是否相等的参数。

返回值:该方法返回



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

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

例:

// C++ program to illustrate 
// unordered_set operator!=  
  
#include <cstring> 
#include <iostream> 
#include <unordered_set> 
using namespace std; 
  
int main() 
{ 
    unordered_set<string> 
        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::operator =是相应的运算符函数。此函数有三个版本。

  • 第一个版本将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-value引用作为参数。
  • 第三个版本将一个初始化程序列表作为参数。

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

以下示例程序旨在说明C++中的unordered_set::operator =。程序:

// C++ code to illustrate the method  
// unordered_set::operator=() 
#include <iostream> 
#include <unordered_set> 
using namespace std; 
  
// merge function 
template <class T> 
T merge(T a, T b) 
{ 
    T t(a); 
    t.insert(b.begin(), b.end()); 
    return t; 
} 
  
int main() 
{ 
    unordered_set<int> 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




注:本文由纯净天空筛选整理自Pragya_Chaurasia大神的英文原创作品 unordered_set operators in C++ STL。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。