头文件
一、is_sorted
函数is_sorted(sequence)决定一个序列是否按照某种标准完全排序。 如果没有指定比较谓词,则使用std :: less_equal(即,测试是查看序列是否不减少)
namespace boost { namespace algorithm {
template
bool is_sorted ( ForwardIterator first, ForwardIterator last, Pred p );
template
bool is_sorted ( ForwardIterator first, ForwardIterator last );
template
bool is_sorted ( const Range &r, Pred p );
template
bool is_sorted ( const Range &r );
}}
二、is_sorted_until
如果distance(first,last)<2,则is_sorted(first,last)返回最后一个。 否则,它将返回[first,last]中对[first,i]进行排序的最后一个迭代器。
简而言之,它返回序列中“失序”的元素。 如果整个序列被排序(根据谓词),那么它将返回最后一个。
namespace boost { namespace algorithm {
template
FI is_sorted_until ( ForwardIterator first, ForwardIterator last, Pred p );
template
ForwardIterator is_sorted_until ( ForwardIterator first, ForwardIterator last );
template
typename boost::range_iterator::type is_sorted_until ( const Range &r, Pred p );
template
typename boost::range_iterator::type is_sorted_until ( const Range &r );
}}
复杂度:is_sorted_until将最多N-1次调用谓词(给定一个长度为N的序列)。
例子:
给定序列{1,2,3,4,5,3},is_sorted_until(beg,end,std :: less
给定序列{1,2,3,4,5,9},is_sorted_until(beg,end,std :: less
is_ordered也有一套“包装函数”,可以很容易地看到整个序列是否被排序。 这些函数返回一个布尔值,指示成功或失败,而不是迭代器,找到乱序项目的位置。
要测试一个序列是否正在增加(每个元素至少与前一个一样大):
namespace boost { namespace algorithm {
template
bool is_increasing ( Iterator first, Iterator last );
template
bool is_increasing ( const R &range );
}}
namespace boost { namespace algorithm {
template
bool is_decreasing ( ForwardIterator first, ForwardIterator last );
template
bool is_decreasing ( const R &range );
}}
namespace boost { namespace algorithm {
template
bool is_strictly_increasing ( ForwardIterator first, ForwardIterator last );
template
bool is_strictly_increasing ( const R &range );
}}
namespace boost { namespace algorithm {
template
bool is_strictly_decreasing ( ForwardIterator first, ForwardIterator last );
template
bool is_strictly_decreasing ( const R &range );
}}
三、注意
1、例程is_sorted和is_sorted_until是C ++ 11标准的一部分。 使用C ++ 11实现进行编译时,将使用标准库中的实现。
2、is_sorted和is_sorted_until对于长度为1的空范围和范围均返回true。