Condividi tramite


set::find

Restituisce un iteratore destinato alla posizione di un elemento in un gruppo che dispone di un equivalente principale in una chiave specificata.

iterator find(
   const Key& _Key
);
const_iterator find(
   const Key& _Key
) const;

Parametri

  • _Key
    La chiave dell'argomento da corrispondere alla chiave di ordinamento di un elemento dal set presente.

Valore restituito

Un iteratore o const_iterator destinato alla posizione di un equivalente dell'elemento a una chiave specificata o destinato alla posizione che è l'ultimo elemento a set se non viene rilevata alcuna corrispondenza della chiave.

Note

La funzione membro restituisce un iteratore che indirizza un elemento nel set di cui la chiave di ordinamento è equivalente alla chiave dell'argomento in un predicato binario che indica un ordinamento basato su una relazione di comparabilità minore di.

Se il valore restituito find viene assegnato a const_iterator, l'oggetto predefinito non può essere modificato.Se il valore restituito find viene assegnato a iterator, l'oggetto predefinito può essere modificato.

Esempio

// set_find.cpp
// compile with: /EHsc
#include <set>
#include <iostream>

int main( )
{
   using namespace std;
   set <int> s1;
   set <int> :: const_iterator s1_AcIter, s1_RcIter;
   
   s1.insert( 10 );
   s1.insert( 20 );
   s1.insert( 30 );

   s1_RcIter = s1.find( 20 );
   cout << "The element of set s1 with a key of 20 is: "
        << *s1_RcIter << "." << endl;

   s1_RcIter = s1.find( 40 );

   // If no match is found for the key, end( ) is returned
   if ( s1_RcIter == s1.end( ) )
      cout << "The set s1 doesn't have an element "
           << "with a key of 40." << endl;
   else
      cout << "The element of set s1 with a key of 40 is: "
           << *s1_RcIter << "." << endl;

   // The element at a specific location in the set can be found 
   // by using a dereferenced iterator addressing the location
   s1_AcIter = s1.end( );
   s1_AcIter--;
   s1_RcIter = s1.find( *s1_AcIter );
   cout << "The element of s1 with a key matching "
        << "that of the last element is: "
        << *s1_RcIter << "." << endl;
}
  
  
  

Requisiti

intestazione: <set>

Spazio dei nomi: deviazione standard

Vedere anche

Riferimenti

set Class

set::find (STL Samples)

Libreria di modelli standard