目录

operator<=

描述 (Description)

C ++函数std::deque::operator《=测试第一个deque是否小于或等于其他deque。

声明 (Declaration)

以下是std :: deque :: operator <= function form std :: deque header的声明。

C++98

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

参数 (Parameters)

  • first - 第一个deque对象。

  • second - 相同类型的第二个deque对象。

返回值

如果第一个deque小于或等于秒,则返回true,否则返回false。

异常 (Exceptions)

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

时间复杂

线性即O(n)

例子 (Example)

以下示例显示了std :: deque :: operator <= function的用法。

#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 less than or equal to d2." << endl;
   d2.assign(3, 1);
   if (!(d1 <= d2))
      cout << "Deque d1 is not less than or equal to d2." << endl;
   return 0;
}

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

Deque d1 is less than or equal to d2.
Deque d1 is not less than or equal to d2.
↑回到顶部↑
WIKI教程 @2018