最終更新日時(UTC):
が更新

履歴 編集

function template
<list>

std::operator>

namespace std {
  // operator<=>により、以下の演算子が使用可能になる (C++20)
  template <class T, class Allocator>
  bool operator>(const list<T, Allocator>& x,
                 const list<T, Allocator>& y); // (1) C++03
}

概要

listにおいて、左辺が右辺より大きいかを判定する。

戻り値

y < x

計算量

線形時間

#include <iostream>
#include <list>

int main ()
{
  std::list<int> ls1 = {4, 5, 6};
  std::list<int> ls2 = {1, 2, 3};

  std::cout << std::boolalpha;

  std::cout << (ls1 > ls2) << std::endl;
}

出力

true

参照