C++ 双端队列库 - 运算符 >= 函数


描述

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};
   deque<int> d2 = {1, 2, 3};

   if (d1 >= d2)
      cout << "Deque d1 is greater than or equal to d2." << endl;

   d1.assign(3, 1);

   if (!(d1 >= d2))
      cout << "Deque d1 is not greater than or equal to d2." << endl;

   return 0;
}

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

Deque d1 is greater than or equal to d2.
Deque d1 is not greater than or equal to d2.
双端队列.htm