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

履歴 編集

function template
<algorithm>

std::ranges::is_sorted(C++20)

namespace std::ranges {
  template <forward_iterator I,
            sentinel_for<I> S,
            class Proj = identity,
            indirect_strict_weak_order<projected<I, Proj>> Comp = ranges::less>
  constexpr bool
    is_sorted(I first,
              S last,
              Comp comp = {},
              Proj proj = {}); // (1) C++20

  template <forward_range R,
            class Proj = identity,
            indirect_strict_weak_order<projected<iterator_t<R>, Proj>> Comp = ranges::less>
  constexpr bool
    is_sorted(R&& r,
              Comp comp = {},
              Proj proj = {}); // (2) C++20
}

概要

与えられた範囲がソート済みか判定する。

戻り値

#include <iostream>
#include <vector>
#include <algorithm>

int main()
{
  std::vector<int> v = {3, 1, 4, 2, 5};

  std::cout << std::boolalpha;
  std::cout << "before: is sorted? " << std::ranges::is_sorted(v) << std::endl;

  std::ranges::sort(v);

  std::cout << " after: is sorted? " << std::ranges::is_sorted(v) << std::endl;
}

出力

before: is sorted? false
 after: is sorted? true

バージョン

言語

  • C++20

処理系

参照