C++ 向量库 - 运算符 <= 函数


描述

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

运算符 <= 按顺序比较元素,比较在第一次不匹配时停止。

宣言

以下是 std::vector::operator<= 函数形式 std::vector 标头的声明。

template <class T, class Alloc>
bool operator<= (const vector<T,Alloc>& v1, const vector<T,Alloc>& v2);
  • v1 - 第一个向量。

  • v2 - 第二个向量。

返回值

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

例外情况

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

时间复杂度

线性即 O(n)

例子

以下示例显示了 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 << "1. v1 is less than or equal to v2" << endl;

   v1 = v2;

   if (v1 <= v2)
      cout << "2. v1 is less than or equal to v2" << endl;

   return 0;
}

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

1. v1 is less than or equal to v2
2. v1 is less than or equal to v2
矢量.htm