目录

operator <

描述 (Description)

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

运算符

声明 (Declaration)

以下是std :: vector :: operator

template <class T, class Alloc>
bool operator<  (const vector<T,Alloc>& v1, const vector<T,Alloc>& v2);

参数 (Parameters)

  • v1 - 第一个向量。

  • v2 - 第二个向量。

返回值

如果第一个向量小于第二个,则返回true。

异常 (Exceptions)

这个函数永远不会抛出异常。

时间复杂

线性即O(n)

例子 (Example)

以下示例显示了std :: vector :: operator

#include <iostream>
#include <vector>
using namespace std;
int main(void) {
   vector<int> v1 = {1, 2};
   vector<int> v2 = {1, 2, 3, 4, 5};
   if (v1 < v2)
      cout << "v1 is less than v2" << endl;
   v1.resize(5,10);
   if (!(v1 < v2))
      cout << "v1 is greater than v2" << endl;
   return 0;
}

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

v1 is less than v2
v1 is greater than v2
↑回到顶部↑
WIKI教程 @2018