C++ Queue 库 - operator!= 函数
描述
C++ 函数 std::queue::operator!= 测试两个队列是否相等。比较是通过对底层容器应用相应的算子来完成的。
声明
以下是 std::queue::operator!= 函数形式 std::queue 头的声明。
C++98
template <class T, class Container> bool operator!= (const queue<T,Container>& q1, const queue<T,Container>& q2);
参数
q1 − 第一个队列对象。
q2 − 第二个队列对象。
返回值
如果两个队列不相同则返回 true,否则返回 false。
异常
此成员函数从不抛出异常。
时间复杂度
线性,即 O(n)
示例
以下示例显示了 std::queue::operator!= 函数的用法。
#include <iostream> #include <queue> using namespace std; int main(void) { queue<int> q1, q2; for (int i = 0; i < 5; ++i) { q1.push(i + 1); q2.push(i + 1); } q1.pop(); if (q1 != q2) cout << "q1 and q2 are not identical." << endl; q2.pop(); if (!(q1 != q2)) cout << "q1 and q2 are identical." << endl; return 0; }
让我们编译并运行上面的程序,这将产生以下结果 −
q1 and q2 are not identical. q1 and q2 are identical.