std::priority_queue::push
cppreference.com
[] |
Google. . , . , . |
<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 |
()
Logarithmic number of comparisons plus the complexity of Container::push_back.
.
(C++11) |
(public -) |
| (public -) |