Espaços nominais
Variantes
Acções

std::priority_queue

Da cppreference.com
< cpp‎ | container
 
 
 
std :: priority_queue
Funções de membro
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=
acesso. Elemento
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
Capacidade
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
Modificadores
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
 
Definido no cabeçalho <queue>
template<

    class T,
    class Container = std::vector<T>,
    class Compare = std::less<typename Container::value_type>

> class priority_queue;

Fila de prioridade é um adaptador de contêiner que permite obter seu valor máximo (padrão) em um tempo constante, ao custo de inserção e extração logarítmicas.

Um Compare pode ser fornecido para mudar a ordem. Por exemplo, usar std::greater<T> faria o menor elemento ser retornado pelo método top().

Trabalhar com uma fila de prioridade é semelhante a gerenciar uma pilha em um contêiner com acesso aleatório, com a vantagem de não ser possível invalidar a pilha por acidente.

Índice

[editar] Parâmetros do template

T - O tipo dos elementos armazenados. O comportamento é indefinido se T não for o mesmo de Container::value_type. (desde C++17)
Container - O tipo de contêiner subjacente para armazenar os elementos. O contêiner deve satisfazer os requisitos de SequenceContainer, e seus iteradores devem satisfazer os requisitos de LegacyRandomAccessIterator. Além disso, ele deve fornecer as seguintes funções com semântica usual:
  • front()
  • push_back()
  • pop_back()

Os contêineres padrão std::vector e std::deque satisfazem estes requisitos.

Compare - Uma comparação fornecendo ordenamento estritamente fraco.

Note que o parâmetro Compare é definido de forma a retornar true quando seu primeiro argumento "vem antes" do seu segundo argumento seguindo um ordenamento fraco. Porém, como a fila de prioridade retorna os maiores elementos primeiro, os elementos que "vêm antes" acabam sendo retornados por último. Ou seja, a frente da fila contém o "último" elemento de acordo com o ordenamento fraco Compare.

[editar] Tipos membros

Tipo membro Definição
container_type Container [edit]
value_type Container::value_type [edit]
size_type Container::size_type [edit]
reference Container::reference [edit]
const_reference Container::const_reference [edit]

[editar] Funções membros

constrói o priority_queue
Original:
constructs the priority_queue
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(função pública membro) [edit]
destrói o priority_queue
Original:
destructs the priority_queue
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(função pública membro) [edit]
atribui valores ao adaptador de recipiente
Original:
assigns values to the container adaptor
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(função pública membro) [edit]
Acesso aos Elementos
acessar o elemento superior
Original:
access the top element
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(função pública membro) [edit]
Capacidade
verifica se o recipiente subjacente está vazio
Original:
checks whether the underlying container is empty
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(função pública membro) [edit]
devolve o número de elementos
Original:
returns the number of elements
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(função pública membro) [edit]
Modificadores
inserts element and sorts the underlying container
(função pública membro) [edit]
(C++11)
constructs element in-place and sorts the underlying container
(função pública membro) [edit]
remove o primeiro elemento
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.

(função pública membro) [edit]
Trocar o conteúdo
Original:
swaps the contents
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(função pública membro) [edit]

Objetos Membros

Container c
o recipiente subjacente
Original:
the underlying container
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(objeto protegido membro) [edit]
Compare comp
o objeto função de comparação
(objeto protegido membro)

[editar] Funções não-membros

o algoritmo especializado std::swap
Original:
specializes the std::swap algorithm
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(modelo de função) [edit]

[editar] Classes auxiliares

especializa o traço tipo std::uses_allocator
Original:
specializes the std::uses_allocator type trait
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(modelo de função) [edit]