目录

operator<

描述 (Description)

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

声明 (Declaration)

以下是std :: deque :: operator

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

#include <iostream>
#include <deque>
using namespace std;
int main(void) {
   deque<int> d1 = {1, 2, 3};
   deque<int> d2 = {1, 2, 3, 4, 5};
   if (d1 < d2)
      cout << "Deque d1 is less than d2." << endl;
   d2.assign(1, 1);
   if (!(d1 < d2))
      cout << "Deque d1 is not less than d2." << endl;
   return 0;
}

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

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