std::ranges::is_sorted
来自 cppreference.com
定义在头文件 <algorithm> 中 |
||
调用签名 |
||
template< std::forward_iterator I, std::sentinel_for<I> S, class Proj = std::identity, |
(1) | (自 C++20 起) |
template< ranges::forward_range R, class Proj = std::identity, std::indirect_strict_weak_order< |
(2) | (自 C++20 起) |
检查范围 [
first,
last)
中的元素是否按非降序排序。
相对于比较器 comp,一个序列被排序,如果对于任何指向序列的迭代器 it
以及任何非负整数 n
(使得 it + n
是指向序列元素的有效迭代器),std::invoke(comp, std::invoke(proj, *(it + n)), std::invoke(proj, *it)) 评估为 false.
1) 元素使用给定的二元比较函数 comp 进行比较。
本页描述的类似函数的实体是 *niebloids*,即
在实践中,它们可能以函数对象的形式实现,或者使用特殊的编译器扩展。
内容 |
[edit] 参数
first, last | - | 迭代器-哨兵,定义要检查是否排序的范围 |
r | - | 要检查是否排序的范围 |
comp | - | 要应用于投影元素的比较函数 |
proj | - | 要应用于元素的投影 |
[edit] 返回值
如果范围中的元素根据 comp
排序,则为 true。
[edit] 复杂度
在 first 和 last 之间的距离上是线性的。
[edit] 可能的实现
struct is_sorted_fn { template<std::forward_iterator I, std::sentinel_for<I> S, class Proj = std::identity, std::indirect_strict_weak_order<std::projected<I, Proj>> Comp = ranges::less> constexpr bool operator()(I first, S last, Comp comp = {}, Proj proj = {}) const { return ranges::is_sorted_until(first, last, comp, proj) == last; } template<ranges::forward_range R, class Proj = std::identity, std::indirect_strict_weak_order< std::projected<ranges::iterator_t<R>, Proj>> Comp = ranges::less> constexpr bool operator()(R&& r, Comp comp = {}, Proj proj = {}) const { return (*this)(ranges::begin(r), ranges::end(r), std::ref(comp), std::ref(proj)); } }; inline constexpr is_sorted_fn is_sorted; |
[edit] 备注
ranges::is_sorted
对于空范围和长度为 1 的范围返回 true 。
[edit] 示例
运行这段代码
#include <algorithm> #include <array> #include <functional> #include <iostream> #include <iterator> int main() { namespace ranges = std::ranges; std::array digits {3, 1, 4, 1, 5}; ranges::copy(digits, std::ostream_iterator<int>(std::cout, " ")); ranges::is_sorted(digits) ? std::cout << ": sorted\n" : std::cout << ": not sorted\n"; ranges::sort(digits); ranges::copy(digits, std::ostream_iterator<int>(std::cout, " ")); ranges::is_sorted(ranges::begin(digits), ranges::end(digits)) ? std::cout << ": sorted\n" : std::cout << ": not sorted\n"; ranges::reverse(digits); ranges::copy(digits, std::ostream_iterator<int>(std::cout, " ")); ranges::is_sorted(digits, ranges::greater {}) ? std::cout << ": sorted (with 'greater')\n" : std::cout << ": not sorted\n"; }
输出
3 1 4 1 5 : not sorted 1 1 3 4 5 : sorted 5 4 3 1 1 : sorted (with 'greater')
[edit] 参见
(C++20) |
查找最大的排序子范围 (niebloid) |
(C++11) |
检查范围是否按升序排序 (函数模板) |