◐ Shell
clean mode source ↗

std::map::lower_bound - cppreference.com

Da cppreference.com.

Questa pagina è stata tradotta in modo automatico dalla versione in ineglese della wiki usando Google Translate.

La traduzione potrebbe contenere errori e termini strani. Muovi il puntatore sopra al testo per vedere la versione originale. Puoi aiutarci a correggere gli gli errori. Per ulteriori istruzioni clicca qui.

Click here for the English version of this page

<metanoindex/>

<tbody> </tbody>

iterator lower_bound( const Key& key );

const_iterator lower_bound( const Key& key ) const;

Restituisce un iteratore che punta al primo elemento che non è meno di 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.

Parametri

key -

valore chiave per confrontare gli elementi

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.

Valore di ritorno

iteratore che punta al primo elemento che non è meno di key. Se tale elemento non viene trovato, il past-the-end iteratore (vedi end()), è tornato.

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.

Complessità

Logaritmico della dimensione del contenitore.

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.

Vedi anche

mihai are mere

ritorna un iteratore al primo elemento' maggiore di un certo valore

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.


(metodo pubblico) [modifica]