std::map::lower_bound
De cppreference.com
<metanoindex/>
<tbody> </tbody> 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.
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. |
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.
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.
