Namespaces
Variants

std:: pop_heap

From cppreference.net
Algorithm library
Constrained algorithms and algorithms on ranges (C++20)
Constrained algorithms, e.g. ranges::copy , ranges::sort , ...
Execution policies (C++17)
Non-modifying sequence operations
Batch operations
(C++17)
Search operations
Modifying sequence operations
Copy operations
(C++11)
(C++11)
Swap operations
Transformation operations
Generation operations
Removing operations
Order-changing operations
(until C++17) (C++11)
(C++20) (C++20)
Sampling operations
(C++17)

Sorting and related operations
Partitioning operations
Sorting operations
Binary search operations
(on partitioned ranges)
Set operations (on sorted ranges)
Merge operations (on sorted ranges)
Heap operations
Minimum/maximum operations
Lexicographical comparison operations
Permutation operations
C library
Numeric operations
Operations on uninitialized memory
定义于头文件 <algorithm>
template < class RandomIt >
void pop_heap ( RandomIt first, RandomIt last ) ;
(1) (自 C++20 起为 constexpr)
template < class RandomIt, class Compare >
void pop_heap ( RandomIt first, RandomIt last, Compare comp ) ;
(2) (自 C++20 起为 constexpr)

交换位置 first 与位置 last - 1 的值,并将子范围 [ first , last - 1 ) 转换为堆。这实现了从 [ first , last ) 中移除首元素的效果。

1) [ first , last ) 是关于 operator < (C++20 前) std:: less { } (C++20 起) 的堆。
2) [ first , last ) 相对于 comp 构成一个堆。

若满足以下任一条件,则行为未定义:

  • [ first , last ) 为空。
  • [ first , last ) 相对于对应的比较器不构成堆。
(C++11 前)
(C++11 起)

目录

参数

first, last - 定义待修改(提取根节点)的非空二叉堆元素范围的迭代器对
comp - 比较函数对象(即满足比较要求 Compare 的对象),当第一个参数 小于 第二个时返回 true

比较函数的签名应等价于如下形式:

bool cmp ( const Type1 & a, const Type2 & b ) ;

虽然签名不需要包含 const & ,但函数不得修改传递的对象,且必须能接受所有(可能为 const 的) Type1 Type2 类型的值,无论其 值类别 为何(因此不允许 Type1 & ,也不允许 Type1 ,除非对于 Type1 而言移动操作与复制操作等价 (C++11 起) )。
类型 Type1 Type2 必须使得 RandomIt 类型的对象在解引用后能隐式转换到这两个类型。

类型要求
-
RandomIt 必须满足 随机访问迭代器 的要求。
-
Compare 必须满足 比较 的要求。

复杂度

给定 N std:: distance ( first, last )

1) 最多进行 2log(N) 次比较,使用 operator < (C++20 前) std:: less { } (C++20 起)
2) 最多应用 2log(N) 次比较函数 comp

示例

#include <algorithm>
#include <iostream>
#include <string_view>
#include <type_traits>
#include <vector>
void println(std::string_view rem, const auto& v)
{
    std::cout << rem;
    if constexpr (std::is_scalar_v<std::decay_t<decltype(v)>>)
        std::cout << v;
    else
        for (int e : v)
            std::cout << e << ' ';
    std::cout << '\n';
}
int main()
{
    std::vector<int> v{3, 1, 4, 1, 5, 9};
    std::make_heap(v.begin(), v.end());
    println("after make_heap: ", v);
    std::pop_heap(v.begin(), v.end()); // 将最大元素移至末尾
    println("after pop_heap:  ", v);
    int largest = v.back();
    println("largest element: ", largest);
    v.pop_back(); // 实际移除最大元素
    println("after pop_back:  ", v);
}

输出:

after make_heap: 9 5 4 1 1 3
after pop_heap:  5 3 4 1 1 9
largest element: 9
after pop_back:  5 3 4 1 1

缺陷报告

以下行为变更缺陷报告被追溯应用于先前发布的C++标准。

缺陷报告 应用于 发布时的行为 正确行为
LWG 1205 C++98 [ first , last ) 为空时行为不明确 此情况下行为未定义

参见

向最大堆添加元素
(函数模板)
(C++11)
检查给定范围是否为最大堆
(函数模板)
查找构成最大堆的最大子范围
(函数模板)
从元素范围创建最大堆
(函数模板)
将最大堆转换为按升序排序的元素范围
(函数模板)
从最大堆中移除最大元素
(算法函数对象)