Sdílet prostřednictvím


set::find

Vrátí iterátoru adresování umístění prvku sadu, která obsahuje ekvivalentní klávesa klíč.

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

Parametry

  • _Key
    Klíč argument klíč řazení ze sady prohledávaných prvku odpovídat.

Vrácená hodnota

Iterace nebo const_iterator , umístění prvku ekvivalentní klávesa adresy nebo adresy, umístění, pokud nebude nalezena žádná shoda klíče následných poslední prvek v sadě.

Poznámky

Členské funkce vrátí iterace řešící prvek v sadě, jehož klíč řazení je ekvivalentní klíč argument pod binárního predikátu, indukuje řazení založené na méně-než srovnatelnost vztah.

Pokud vrácená hodnota Najít je přiřazen const_iterator, nastavit objekt nelze upravit.Pokud hodnota vrácená Najít je přiřazen iterační, objekt sady lze upravit.

Příklad

// 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;
}
  
  
  

Požadavky

Záhlaví: <set>

Obor názvů: std

Viz také

Referenční dokumentace

set Class

set::find (STL Samples)

Standardní šablona knihovny