Espaces de noms
Variantes

std::priority_queue::priority_queue

De cppreference.com

<metanoindex/>

 
 
 
std :: priority_queue
Les fonctions membres
Original:
Member functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
priority_queue::priority_queue
priority_queue::~priority_queue
priority_queue::operator=
Elément d'accès
Original:
Element access
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
priority_queue::top
Capacité
Original:
Capacity
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
priority_queue::empty
priority_queue::size
Modificateurs
Original:
Modifiers
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
priority_queue::push
priority_queue::emplace
priority_queue::pop
priority_queue::swap
 
<tbody> </tbody>
explicit priority_queue( const Compare& compare = Compare(), const Container& cont = Container()); priority_queue( const Compare& compare, const Container& cont);
(1) (avant C++11)

(depuis C++11)
explicit priority_queue( const Compare& compare = Compare(), Container&& cont = Container());
(2) (depuis C++11)
priority_queue( const priority_queue& other );
(3)
priority_queue( priority_queue&& other );
(4) (depuis C++11)
template< class Alloc > explicit priority_queue( const Alloc& alloc );
(5) (depuis C++11)
template< class Alloc > priority_queue( const Compare& compare, const Alloc& alloc );
(6) (depuis C++11)
template< class Alloc > priority_queue( const Compare& compare, const Container& cont, const Alloc& alloc );
(7) (depuis C++11)
template< class Alloc > priority_queue( const Compare& compare, Container&& cont, const Alloc