C++ Vector 库 - operator> 函数
描述
C++ 函数 std::vector::operator> 测试第一个向量是否大于其他向量。
按顺序操作 > compares 元素,比较在第一次不匹配时停止。
声明
以下是 std::vector::operator> 函数形式 std::vector 头的声明。
template <class T, class Alloc> bool operator> (const vector<T,Alloc>& lhs, const vector<T,Alloc>& rhs);
v1 − 第一个向量。
v2 − 第二个向量。
返回值
如果第一个向量大于第二个向量,则返回 true,否则返回 false。
异常
此函数从不抛出异常。
时间复杂度
线性,即 O(n)
示例
以下示例显示了 std::vector::operator> 函数的用法。
#include <iostream> #include <vector> using namespace std; int main(void) { vector<int> v1 = {1, 2, 3, 4, 5}; vector<int> v2; if (v1 > v2) cout << "v1 is greater than v2" << endl; v2.push_back(1); v2.push_back(2); v2.push_back(3); v2.push_back(4); v2.push_back(6); if (!(v1 > v2)) cout << "v1 is not greater than v2" << endl; return 0; }
让我们编译并运行上面的程序,这将产生以下结果 −
v1 is greater than v2 v1 is not greater than v2