hash_map::equal_range
[!NOTA]
Questo API è obsoleto.L'alternativa consiste unordered_map Class.
Restituisce una coppia degli iteratori rispettivamente al primo elemento in un hash_map con una chiave maggiore di una chiave specificata e il primo elemento in hash_map con una chiave a uguale a o maggiore della chiave.
pair <const_iterator, const_iterator> equal_range (
const Key& _Key
) const;
pair <iterator, iterator> equal_range (
const Key& _Key
);
Parametri
- _Key
Il valore della chiave dell'argomento da confrontare con la chiave di ordinamento di un elemento da hash_map cercato.
Valore restituito
Una coppia degli iteratori in modo che il primo è lower_bound della chiave e del secondo è upper_bound chiave.
Per accedere al primo iteratore di una coppia pr restituito dalla funzione membro, utilizzare pr.primo/a e dereferenziare l'iteratore limite inferiore, utilizzare * (pr.primo/a).Per accedere al secondo iteratore di una coppia pr restituito dalla funzione membro, utilizzare pr.secondo e dereferenziare l'iteratore limite superiore, utilizzare * (pr.secondo).
Note
In Visual C++ .NET 2003, i membri dei file di intestazione <hash_set> e <hash_map> non sono più nello spazio dei nomi di deviazione standard, ma sono stati spostati nello spazio dei nomi di stdext.Per ulteriori informazioni, vedere lo spazio dei nomi stdext.
Esempio
// hash_map_equal_range.cpp
// compile with: /EHsc
#include <hash_map>
#include <iostream>
int main( )
{
using namespace std;
using namespace stdext;
typedef hash_map <int, int> IntMap;
IntMap hm1;
hash_map <int, int> :: const_iterator hm1_RcIter;
typedef pair <int, int> Int_Pair;
hm1.insert ( Int_Pair ( 1, 10 ) );
hm1.insert ( Int_Pair ( 2, 20 ) );
hm1.insert ( Int_Pair ( 3, 30 ) );
pair <IntMap::const_iterator, IntMap::const_iterator> p1, p2;
p1 = hm1.equal_range( 2 );
cout << "The lower bound of the element with "
<< "a key of 2 in the hash_map hm1 is: "
<< p1.first -> second << "." << endl;
cout << "The upper bound of the element with "
<< "a key of 2 in the hash_map hm1 is: "
<< p1.second -> second << "." << endl;
// Compare the upper_bound called directly
hm1_RcIter = hm1.upper_bound( 2 );
cout << "A direct call of upper_bound( 2 ) gives "
<< hm1_RcIter -> second << "," << endl
<< " matching the 2nd element of the pair"
<< " returned by equal_range( 2 )." << endl;
p2 = hm1.equal_range( 4 );
// If no match is found for the key,
// both elements of the pair return end( )
if ( ( p2.first == hm1.end( ) ) && ( p2.second == hm1.end( ) ) )
cout << "The hash_map hm1 doesn't have an element "
<< "with a key less than 40." << endl;
else
cout << "The element of hash_map hm1 with a key >= 40 is: "
<< p1.first -> first << "." << endl;
}
Requisiti
intestazione: <hash_map>
Stdext diSpazio dei nomi: