hash_set::find
Not
Bu API artık kullanılmıyor.Alternatif unordered_set Class.
Belirtilen anahtar için eşdeğer bir anahtarı olan hash_set öğesinin konumunu adresleme bir yineleyici döndürür.
iterator find(
const Key& _Key
);
const_iterator find(
const Key& _Key
) const;
Parametreler
- _Key
Hash_set Aranan öğeden sıralama anahtarı tarafından anahtarın eşleştirilmesi gereken bağımsız değişkeni.
Dönüş Değeri
Bir Yineleyici veya const_iterator , belirtilen anahtar için eşdeğer bir öğenin konumunu adresleri veya anahtar için eşleşme bulunursa, hash_set'deki son öğe izleyen konum giderir.
Notlar
Bir öğe, sýralama anahtarýdýr hash_set adresleri bir yineleyici üye işlevini verir eşdeğer bağımsız değişkeni için bir sipariş verme işleminiz ikili bir karşılaştırma altında anahtarı üzerinde daha az temel-comparability ilişkisi daha.
Dönüş değerini bulmak için atanmış bir const_iterator, hash_set nesnesi değiştirilemez. Dönüş değerini bulmak için atanmış bir Yineleyici, hash_set nesne değiştirilebilir.
Visual C++ .NET 2003, üyeleri de <hash_map> ve <hash_set> başlık dosyaları artık std ad alanında bulunan, ancak bunun yerine stdext ad alanına taşınmış. Bkz: ad stdext daha fazla bilgi için.
Örnek
// hash_set_find.cpp
// compile with: /EHsc
#include <hash_set>
#include <iostream>
int main( )
{
using namespace std;
using namespace stdext;
hash_set <int> hs1;
hash_set <int> :: const_iterator hs1_AcIter, hs1_RcIter;
hs1.insert( 10 );
hs1.insert( 20 );
hs1.insert( 30 );
hs1_RcIter = hs1.find( 20 );
cout << "The element of hash_set hs1 with a key of 20 is: "
<< *hs1_RcIter << "." << endl;
hs1_RcIter = hs1.find( 40 );
// If no match is found for the key, end( ) is returned
if ( hs1_RcIter == hs1.end( ) )
cout << "The hash_set hs1 doesn't have an element "
<< "with a key of 40." << endl;
else
cout << "The element of hash_set hs1 with a key of 40 is: "
<< *hs1_RcIter << "." << endl;
// The element at a specific location in the hash_set can be found
// by using a dereferenced iterator addressing the location
hs1_AcIter = hs1.end( );
hs1_AcIter--;
hs1_RcIter = hs1.find( *hs1_AcIter );
cout << "The element of hs1 with a key matching "
<< "that of the last element is: "
<< *hs1_RcIter << "." << endl;
}
Gereksinimler
Başlık: <hash_set>
Ad alanı: stdext