CppDS.com

C++ 98 11 14 17 20 手册

std::partition_point

来自cppreference.com
< cpp‎ | algorithm
 
 
算法库
有制约算法及范围上的算法 (C++20)
有制约算法: std::ranges::copy, std::ranges::sort, ...
执行策略 (C++17)
不修改序列的操作
(C++11)(C++11)(C++11)
(C++17)
修改序列的操作
未初始化存储上的操作
划分操作
partition_point
(C++11)
排序操作
(C++11)
二分搜索操作
集合操作(在已排序范围上)
堆操作
(C++11)
最小/最大操作
(C++11)
(C++17)

排列
数值运算
C 库
 
定义于头文件 <algorithm>
template< class ForwardIt, class UnaryPredicate >
ForwardIt partition_point( ForwardIt first, ForwardIt last, UnaryPredicate p );
(C++11 起)
(C++20 前)
template< class ForwardIt, class UnaryPredicate >
constexpr ForwardIt partition_point( ForwardIt first, ForwardIt last, UnaryPredicate p );
(C++20 起)

检验(如同用 std::partition 的)划分范围 [first, last) ,并定位第一划分的结尾,即首个不满足 p 的元素,或若所有元素满足 p 则为 last

参数

first, last - 要检验的元素被划分范围
p - 对于在范围起始找到的元素则返回 ​true 的一元谓词。

对每个(可为 const 的) VT 类型参数 v ,其中 VTForwardIt 的值类型,表达式 p(v) 必须可转换为 bool ,无关乎值类别,而且必须不修改 v 。从而不允许 VT& 类型参数,亦不允许 VT ,除非对 VT 而言移动等价于复制 (C++11 起)。 ​

类型要求
-
ForwardIt 必须满足遗留向前迭代器 (LegacyForwardIterator) 的要求。
-
UnaryPredicate 必须满足谓词 (Predicate) 的要求。

返回值

[first, last) 内第一划分结尾后的迭代器,或若所有元素满足 p 则为 last

复杂度

给定 N = std::distance(first, last) ,应用 O(log N) 次谓词 p

然而,对于非遗留随机访问迭代器 (LegacyRandomAccessIterator) ,迭代器自增次数为 O(N)

注解

此算法是 std::lower_bound 的更通用化的形式,能用 std::partition_point[&](auto const& e) { return e < value; } 为谓词表达它。

示例

#include <algorithm>
#include <array>
#include <iostream>
#include <iterator>
 
int main()
{
    std::array<int, 9> v = { 1, 2, 3, 4, 5, 6, 7, 8, 9 };
 
    auto is_even = [](int i){ return i % 2 == 0; };
    std::partition(v.begin(), v.end(), is_even);
 
    auto p = std::partition_point(v.begin(), v.end(), is_even);
 
    std::cout << "Before partition:\n    ";
    std::copy(v.begin(), p, std::ostream_iterator<int>(std::cout, " "));
    std::cout << "\nAfter partition:\n    ";
    std::copy(p, v.end(), std::ostream_iterator<int>(std::cout, " "));
}

输出:

Before partition:
    8 2 6 4 
After partition:
    5 3 7 1 9

参阅

(C++11)
检查范围是否已按升序排列
(函数模板)
返回指向第一个不小于给定值的元素的迭代器
(函数模板)
关闭