◐ Shell
clean mode source ↗

std::priority_queue::push – cppreference.com

Aus cppreference.com

<metanoindex/>

<tbody> </tbody>

void push( const T& value );

void push( T&& value );

(seit C++11)

Pushes the given element value to the priority queue.

1) Effectively calls c.push_back(value); std::push_heap(c.begin(), c.end(), comp);

2) Effectively calls c.push_back(std::move(value)); std::push_heap(c.begin(), c.end(), comp);

Parameter

value -

der Wert des Elements zu drücken

Original:

the value of the element to push

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Rückgabewert

(None)

Original:

(none)

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Komplexität

Logarithmic number of comparisons plus the complexity of Container::push_back.

Siehe auch

constructs element in-place and sorts the underlying container
(öffentliche Elementfunktion) [edit]

entfernt das erste Element

Original:

removes the first element

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.


(öffentliche Elementfunktion) [edit]