std::priority_queue::top

From Cppreference

Jump to: navigation, search
reference top();
(C++11 feature)
const_reference top() const;

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.

Contents

[edit] Parameters

(none)

[edit] Return value

Reference to the top element as if obtained by a call to c.back() (C++11 version)

Reference to the top element as if obtained by a call to c.front() (pre-C++11 version)

[edit] Complexity

Constant

[edit] See also

pop
removes the first element
(public member function)