std::swap(std::priority_queue)
来自cppreference.com
< cpp | container | priority queue
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
检查到模板循环:Template:include page
template< > void swap( priority_queue<> &lhs, |
||
专为std::swapstd::priority_queue算法。
lhs
和rhs
交换的内容。呼叫lhs.swap(rhs).原文:
Specializes the std::swap algorithm for std::priority_queue. Swaps the contents of
lhs
and rhs
. Calls lhs.swap(rhs).目录 |
[编辑] 参数
lhs, rhs | - | 容器的内容交换
|
[编辑] 返回值
(无)
[编辑] 复杂性
Same as swapping the underlying container.
[编辑] 另请参阅
交换priority_queue 的内容 (公共成员函数) |