當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。