C++ 数组库 - 运算符 <=() 函数


描述

C++ 函数bool operator>()按顺序比较两个数组容器元素。比较在第一次不匹配或容器元素耗尽时停止。为了比较两个容器的大小和数据类型必须相同,否则编译器将报告编译错误。

宣言

以下是 bool operator>() 函数形式 std::array 标头的声明。

template <class T, size_t N>
   bool operator> ( const array<T,N>& arr1, const array<T,N>& arr2 );

参数

arr1 和 arr2 - 两个具有相同大小和类型的数组容器。

返回值

如果第一个数组容器大于第二个数组容器,则返回 true,否则返回 false。

例外情况

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

时间复杂度

线性即 O(n)

例子

以下示例显示了 bool operator>() 函数的用法。

#include <iostream>
#include <array>

using namespace std;

int main(void) {

   array<int, 5> arr1 = {1, 2, 3, 4, 5};
   array<int, 5> arr2 = {1, 2, 4, 3, 5};
   bool result;

   result = (arr2 > arr1);

   if (result == true)
      cout << "arr2 is greater than arr1\n";
   else
      cout << "arr1 is greater that arr2\n";

   return 0;
}

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

arr2 is greater than arr1
数组.htm