std::priority_queue
的推导指南
定义在头文件 <queue> 中 |
||
template< class Comp, class Container > priority_queue( Comp, Container ) |
(1) | (自 C++17 起) |
template< class InputIt, class Comp = std::less</*iter-value-type*/<InputIt>>, |
(2) | (自 C++17 起) |
template< class Comp, class Container, class Alloc > priority_queue( Comp, Container, Alloc ) |
(3) | (自 C++17 起) |
template< class InputIt, class Alloc > priority_queue( InputIt, InputIt, Alloc ) |
(4) | (自 C++17 起) |
template< class InputIt, class Comp, class Alloc > priority_queue( InputIt, InputIt, Comp, Alloc ) |
(5) | (自 C++17 起) |
template< class InputIt, class Comp, class Container, class Alloc > priority_queue( InputIt, InputIt, Comp, Container, Alloc ) |
(6) | (自 C++17 起) |
template< ranges::input_range R, class Comp = std::less<ranges::range_value_t<R>> > |
(7) | (自 C++23 起) |
template< ranges::input_range R, class Comp, class Alloc > priority_queue( std::from_range_t, R&&, Comp, Alloc ) |
(8) | (自 C++23 起) |
template< ranges::input_range R, class Alloc > priority_queue( std::from_range_t, R&&, Alloc ) |
(9) | (自 C++23 起) |
以下 推导指南 用于 std::priority_queue
It
。这些重载仅在以下情况下参与重载解析
-
InputIt
满足 LegacyInputIterator, -
Comp
不满足 Allocator, -
Container
不满足 Allocator, - 对于重载 (4,5),(自 C++23 起)
Alloc
满足 Allocator, 并且 - 对于重载 (3,6), std::uses_allocator_v<Container, Alloc> 为 true.
注意:库确定类型是否不满足 LegacyInputIterator 的程度是未指定的,但至少整数类型不符合输入迭代器。 同样,确定类型是否不满足 Allocator 的程度是未指定的,但至少成员类型 Alloc::value_type
必须存在,表达式 std::declval<Alloc&>().allocate(std::size_t{}) 在被视为未评估的操作数时必须是格式良好的。
[编辑] 注意
特性测试 宏 | 值 | 标准 | 特性 |
---|---|---|---|
__cpp_lib_containers_ranges |
202202L | (C++23) | 支持范围的 构造和插入;重载 (7-9) |
[编辑] 示例
#include <functional> #include <iostream> #include <queue> #include <vector> int main() { const std::vector<int> v = {1, 2, 3, 4}; std::priority_queue pq1{std::greater<int>{}, v}; // deduces std::priority_queue< // int, std::vector<int>, // std::greater<int>> for (; !pq1.empty(); pq1.pop()) std::cout << pq1.top() << ' '; std::cout << '\n'; std::priority_queue pq2{v.begin(), v.end()}; // deduces std::priority_queue<int> for (; !pq2.empty(); pq2.pop()) std::cout << pq2.top() << ' '; std::cout << '\n'; }
输出
1 2 3 4 4 3 2 1
[编辑] 缺陷报告
以下行为变更的缺陷报告已追溯应用于先前发布的 C++ 标准。
DR | 应用于 | 已发布的行为 | 正确行为 |
---|---|---|---|
LWG 3506 | C++17 | 缺少来自迭代器和分配器的推导指南 | 已添加 |