C++ set 运算符== 使用方法及示例

C++ STL Set(集合)

C ++ set 运算符==是C ++中set 的非成员重载函数。此功能用于检查两组集合是否相等。

注意:集合对象之间的比较是基于元素的成对比较。如果两个集合具有相同数量的元素,并且它们对应的元素具有相同的值,则两个集合是相等的。否则它们是不相等的。

语法

template <class T, class Compare, class Alloc>
  bool operator== ( const set<T,Compare,Alloc>& lhs,
                    const set<T,Compare,Alloc>& rhs );

参数

lhs:第一个设置的对象。

rhs:第二个对象。

返回值

如果set对象的左侧等于set对象的右侧,则返回true,否则为false。

复杂

如果lhs和rhs的大小不同,则复杂度将保持不变。

否则,最大长度为lhs和rhs。

迭代器有效性

没有变化。

数据争用

可以访问容器lhs和rhs。

同时访问未修改集合对象的元素始终是安全的,这意味着它们的元素是不可变的。

异常安全

此函数不会引发异常。

实例1

让我们看一个简单的示例来检查两个集合是否相等:

#include <iostream>
#include <set>

using namespace std;

int main() {
   set<char> m1;
   set<char> m2;

   if (m1 == m2)
      cout << "两个集合是相等的。" << endl;

   m1.emplace('a');
   
   //在集合m1中添加元素之后
   if (!(m1 == m2))
      cout << "两个集合不相等。" << endl;

   return 0;
}

输出:

两个集合是相等的。
两个集合不相等。

在上面的示例中,集合m1和m2为空。因此,operator ==将返回true,并且在集合m1中添加一个元素后,m1的大小将不同于m2的大小。因此,它将返回false。

实例2

让我们看一个简单的实例:

#include <set>  
#include <iostream>  
  
int main ()  
{  
   using namespace std;  
   set <int> m1, m2, m3;  
   int i;  
     
   for (i = 0; i <3; i ++)  
   {  
      m1.insert (i);  
      m2.insert (i * i);  
      m3.insert (i);  
   }  
  
   if (m1 == m2)  
      cout << "集合m1和m2是相等的。" << endl;  
   else  
      cout << "集合m1和m2不相等。" << endl;  
  
   if (m1 == m3)  
      cout << "集合m1和m3是相等的。" << endl;  
   else  
      cout << "集合m1和m3不相等。" << endl;  
      return 0;
}

输出:

集合m1和m2不相等。
集合m1和m3是相等的。

实例3

让我们看一个简单的实例:

#include <iostream>
#include <set>

using namespace std;

int  main () 
{ 
  set < int >  s1 ,  s2 ; 
  
  s1 . insert ( 10 ); 
  s1 . insert ( 20 ); 
  s1 . insert ( 30 ); 
  s2  =  s1 ;

  cout  <<  ( s1  ==  s2 )  << endl ;

  s2 . insert ( 40 );

  cout  <<  ( s1  ==  s2 )  << endl ; 
}

输出:

1
0

在上面的示例中,如果集合s1和s2相等,则它将返回1,否则返回0。

实例4

#include <set>  
#include <iostream>  

using namespace std; 
  
int main ()  
{  
   set<string> m2;
   typedef set<string> login; 
   
  m2 = {"xyz@123"} ; //stored password
   
   string password;
   login m1;
   
       cout<<"---------Login----------"<<endl<<endl;
       cout<<"输入密码: \n";
       cin>> password;    // Get value
       m1.insert(password);   // Put them in set

     cout<<"您输入的密码: \n";
     for (auto it = m1.begin(); it != m1.end(); it++) {
        cout << (*it)<< endl;
      }
      cout<<"系统中存储的密码 :\n";
     for (auto it = m2.begin(); it != m2.end(); it++) {
        cout << (*it)<< endl;
     }

  
   if (m1 == m2)  
      cout << "\nWelcome to your Page..." << endl;  
   else  
      cout << "\nIncorrect Password..." << endl;  

      return 0;
}

输出:

1).
---------Login----------

输入密码: 
xyz
您输入的密码: 
xyz
系统中存储的密码 :
xyz@123

Incorrect Password...


2).
---------Login----------

输入密码: 
xyz@123
您输入的密码: 
xyz@123
系统中存储的密码 :
xyz@123

Welcome to your Page...

在上面的示例中,有两组m1和m2。m1包含密码,第二组m2存储用户输入的密码。它检查这两个集合是否具有相同的元素。如果密码匹配,则登录成功,否则登录失败。

C++ STL Set(集合)