[ Web Proxy ]
URL:
Viewing: http://ru.cppreference.com/cpp/container/priority_queue/push [Back]  [Original]

std::priority_queue::push cppreference.com
cppreference.com

std::priority_queue::push

cppreference.com

<metanoindex/>

<tbody> </tbody>
void push( const T& value );
void push( T&& value );
( 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);

value
:
the value of the element to push
Google.
. .

()

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

.

(C++11)

(public -) []

(public -) []

Web Proxy Viewer  |  New URL  |  Original Page