std::ranges::nth_element
来自 cppreference.com
定义在头文件 <algorithm> 中 |
||
调用签名 |
||
template< std::random_access_iterator I, std::sentinel_for<I> S, class Comp = ranges::less, class Proj = std::identity > |
(1) | (自 C++20 起) |
template< ranges::random_access_range R, class Comp = ranges::less, class Proj = std::identity > |
(2) | (自 C++20 起) |
重新排列 [
first,
last)
中的元素,使得
nth
指向的元素被更改为如果[
first,
last)
相对于comp
和proj
进行排序,该位置将出现的元素。- 所有在此新的
nth
元素之前的元素都小于或等于在此新的nth
元素之后的元素。也就是说,对于[
first,
nth)
和[
nth,
last)
范围中的每个迭代器 i, j,表达式std::invoke(comp, std::invoke(proj, *j), std::invoke(proj, *i))
的结果为false
。 - 如果
nth == last
则该函数没有效果。
1) 使用给定的二元比较函数对象
comp
和投影对象 proj
比较元素。此页面上描述的类函数实体是 *niebloids*,即
在实践中,它们可能是用函数对象实现的,或者使用特殊的编译器扩展。
内容 |
[edit] 参数
first, last | - | 要重新排序的元素范围 |
r | - | 要重新排序的元素范围 |
nth | - | 定义分区点的迭代器 |
comp | - | 用于比较投影元素的比较器 |
proj | - | 要应用于元素的投影 |
[edit] 返回值
1) 等于 last 的迭代器。
[edit] 复杂度
平均情况下为 ranges::distance(first, last) 的线性。
[edit] 注释
所使用的算法通常是 introselect,尽管允许使用其他具有适当平均情况复杂度的 选择算法。
[edit] 可能的实现
另请参见 msvc stl、libstdc++ 和 libc++ 中的实现:(1) / (2)。
[edit] 示例
运行此代码
#include <algorithm> #include <array> #include <functional> #include <iostream> #include <ranges> #include <string_view> void print(std::string_view rem, std::ranges::input_range auto const& a) { for (std::cout << rem; const auto e : a) std::cout << e << ' '; std::cout << '\n'; } int main() { std::array v{5, 6, 4, 3, 2, 6, 7, 9, 3}; print("Before nth_element: ", v); std::ranges::nth_element(v, v.begin() + v.size() / 2); print("After nth_element: ", v); std::cout << "The median is: " << v[v.size() / 2] << '\n'; std::ranges::nth_element(v, v.begin() + 1, std::greater<int>()); print("After nth_element: ", v); std::cout << "The second largest element is: " << v[1] << '\n'; std::cout << "The largest element is: " << v[0] << "\n\n"; using namespace std::literals; std::array names { "Diva"sv, "Cornelius"sv, "Munro"sv, "Rhod"sv, "Zorg"sv, "Korben"sv, "Bender"sv, "Leeloo"sv, }; print("Before nth_element: ", names); auto fifth_element{std::ranges::next(names.begin(), 4)}; std::ranges::nth_element(names, fifth_element); print("After nth_element: ", names); std::cout << "The 5th element is: " << *fifth_element << '\n'; }
输出
Before nth_element: 5 6 4 3 2 6 7 9 3 After nth_element: 2 3 3 4 5 6 6 7 9 The median is: 5 After nth_element: 9 7 6 6 5 4 3 3 2 The second largest element is: 7 The largest element is: 9 Before nth_element: Diva Cornelius Munro Rhod Zorg Korben Bender Leeloo After nth_element: Diva Cornelius Bender Korben Leeloo Rhod Munro Zorg The 5th element is: Leeloo
[edit] 另请参阅
(C++20) |
返回范围内最大的元素 (niebloid) |
(C++20) |
返回范围内最小的元素 (niebloid) |
(C++20) |
将元素范围划分为两个组 (niebloid) |
(C++20) |
对范围的前 N 个元素进行排序 (niebloid) |
部分排序给定范围,确保它按给定元素进行分区 (函数模板) |