C++ Deque 库 - 运算符 == 函数


描述

C++ 函数std::deque::operator==测试两个双端队列是否相同。

宣言

以下是 std::deque::operator== 函数形式 std::deque 标头的声明。

C++98

template <class T, class Alloc>
bool operator== (const deque<T, Alloc>& first, const deque<T, Alloc>& second);

参数

  • 第一个- 第一个双端队列对象。

  • 第二个- 相同类型的第二个双端队列对象。

返回值

如果第一个双端队列与第二个双端队列相同,则返回 true,否则返回 false。

例外情况

该成员函数从不抛出异常。

时间复杂度

线性即 O(n)

例子

以下示例显示了 std::deque::operator== 函数的用法。

#include <iostream>
#include <deque>

using namespace std;

int main(void) {

   deque<int> d1 = {1, 2, 3, 4, 5};
   deque<int> d2 = {1, 2, 3, 4, 5};

   if (d1 == d2)
      cout << "Deque d1 and d2 are equal." << endl;

   d1.assign(2, 1);

   if (!(d1 == d2))
      cout << "Deque d1 and d2 are not equal." << endl;

   return 0;
}

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

Deque d1 and d2 are equal.
Deque d1 and d2 are not equal.
双端队列.htm