- algorithm[meta header]
- std[meta namespace]
- function template[meta id-type]
- cpp11[meta cpp]
namespace std {
template <class ForwardIterator>
bool is_sorted(ForwardIterator first,
ForwardIterator last); // (1) C++11
template <class ForwardIterator>
constexpr bool is_sorted(ForwardIterator first,
ForwardIterator last); // (1) C++20
template <class ForwardIterator, class Compare>
bool is_sorted(ForwardIterator first,
ForwardIterator last,
Compare comp); // (2) C++11
template <class ForwardIterator, class Compare>
constexpr bool is_sorted(ForwardIterator first,
ForwardIterator last,
Compare comp); // (2) C++20
template <class ExecutionPolicy, class ForwardIterator>
bool is_sorted(ExecutionPolicy&& exec,
ForwardIterator first,
ForwardIterator last); // (3) C++17
template <class ExecutionPolicy, class ForwardIterator, class Compare>
bool is_sorted(ExecutionPolicy&& exec,
ForwardIterator first,
ForwardIterator last,
Compare comp); // (4) C++17
}
イテレータ範囲[first, last)
がソート済みか判定する。
- (1) :
is_sorted_until
(first, last) == last
- (2) :
is_sorted_until
(first, last, comp) == last
#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::is_sorted(v.begin(), v.end()) << std::endl;
std::sort(v.begin(), v.end());
std::cout << " after: is sorted? " << std::is_sorted(v.begin(), v.end()) << std::endl;
}
- std::is_sorted[color ff0000]
before: is sorted? false
after: is sorted? true
- C++11
- Clang: ??
- GCC: 4.7.0 [mark verified]
- ICC: ??
- Visual C++: 2010 [mark verified], 2012 [mark verified], 2013 [mark verified], 2015 [mark verified]
- 2008では、
_HAS_TRADITIONAL_STL
を1に定義してから<algorithm>
をインクルードすると、stdext
名前空間でis_sorted
が定義される。
- 2008では、