std::set::lower_bound
Da cppreference.com
![]() | 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. |
iterator lower_bound(const Key& key ); | ||
const_iterator lower_bound(const Key& key )const; | ||
Retorna um iterador apontando para o primeiro elemento que é não menos do que
key
.Original:
Returns an iterator pointing to the first element that is not less than
key
.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
key | - | valor de chave para comparar os elementos de Original: key value to compare the elements to 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
iterador apontando para o primeiro elemento que não é' menos do que
key
. Se nenhum elemento for encontrado, um iterador past-the-final (ver end()
) é retornado.Original:
iterator pointing to the first element that is not less than
key
. If no such element is found, a past-the-end iterator (see end()
) is returned.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
Logarítmica no tamanho do recipiente.
Original:
Logarithmic in the size of the container.
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
retorna a escala de elementos que combinam com uma tecla específica Original: returns range of elements matching a specific key 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) | |
retorna um iterador para o primeiro elemento' maior do que um determinado valor Original: returns an iterator to the first element greater than a certain value 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) |