std::is_sorted
是 C++ 标准库中的一个函数,用于检查范围内的元素是否已按非降序(即升序或相等)排列。当你在 C++ 中使用
std::is_sorted` 函数时,需要注意以下几点:
头文件,因为
std::is_sorted` 函数定义在这个头文件中。#include<algorithm>
std::is_sorted
函数的原型如下:template< class InputIt >
bool is_sorted( InputIt first, InputIt last );
template< class InputIt, class Compare >
bool is_sorted( InputIt first, InputIt last, Compare comp );
其中,first
和 last
是要检查的范围的起始和结束迭代器。comp
是一个可选的比较函数,用于定义“非降序”的含义。如果没有提供 comp
,则默认使用 operator<
。
返回值:如果范围内的所有元素都按非降序排列,则函数返回 true
;否则返回 false
。
比较函数:如果提供了自定义比较函数 comp
,请确保它遵循严格弱序的要求。这意味着对于任何两个元素 a
和 b
,comp(a, b)
和 comp(b, a)
不能同时为 true
。此外,comp(a, a)
必须为 false
。
性能考虑:std::is_sorted
的时间复杂度为 O(n),其中 n 是范围内元素的数量。在最坏的情况下,它需要检查范围内的每个元素。
示例:
#include<iostream>
#include<vector>
#include<algorithm>
int main() {
std::vector<int> v = {1, 2, 3, 4, 5};
if (std::is_sorted(v.begin(), v.end())) {
std::cout << "The vector is sorted."<< std::endl;
} else {
std::cout << "The vector is not sorted."<< std::endl;
}
return 0;
}
总之,在使用 std::is_sorted
函数时,请确保正确包含头文件,理解函数原型和返回值,并注意性能考虑。如果需要,可以提供自定义比较函数来定义“非降序”的含义。