std::priority_queue::top
来自cppreference.com
< cpp | container | priority queue
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
const_reference top() const; |
||
返回优先级队列中的顶级元素。
pop()
呼叫,该元素将被删除。如果使用默认比较函数,返回的元素也是在队列中的元素之间的最大. 原文:
Returns reference to the top element in the priority queue. This element will be removed on a call to
pop()
. If default comparison function is used, the returned element is also the greatest among the elements in the queue. 目录 |
[编辑] 参数
(无)
[编辑] 返回值
参考最上面的元素,如果获得通过调用c.back()(C++11 起)
原文:
Reference to the top element as if obtained by a call to c.back() (C++11 起)
参考最上面的元素,如果获得通过调用c.front()(至 C++11)
原文:
Reference to the top element as if obtained by a call to c.front() (至 C++11)
[编辑] 复杂度
恒定
[编辑] 另请参阅
删除第一个元素 (公共成员函数) |