std::priority_queue::swap
Da cppreference.com
< cpp | container | priority queue
![]() |
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
void swap{ const priority_queue<T, Container, Compare>& other ); |
||
Trocas o conteúdo do recipiente com os adaptadores de
other
. Effectively calls using std::swap; swap(c, other.c); swap(comp, other.comp);Original:
Exchanges the contents of the container adaptor with those of
other
. Effectively calls using std::swap; swap(c, other.c); swap(comp, other.comp);The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Índice |
[editar] Parâmetros
other | - | adaptador de recipiente para trocar o conteúdo com
Original: container adaptor to exchange the contents with The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[editar] Valor de retorno
(Nenhum)
Original:
(none)
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[editar] Complexidade
Mesmo que o recipiente subjacente (linear se
Container
é std :: matriz constante, de outra forma)Original:
Same as underlying container (linear if
Container
is std :: matriz, constant otherwise)The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[editar] Veja também
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) |