Udostępnij za pośrednictwem


hash_map::equal_range

[!UWAGA]

Ten interfejs API jest nieaktualny.Alternatywą jest unordered_map Class.

Zwraca parę Iteratory odpowiednio do pierwszego elementu w hash_map przy użyciu klucza, która jest większa niż określonym kluczem i do pierwszego elementu w hash_map przy użyciu klucza, który jest równy lub większy niż klucz.

pair <const_iterator, const_iterator> equal_range (
   const Key& _Key
) const;
pair <iterator, iterator> equal_range (
   const Key& _Key
);

Parametry

  • _Key
    Argument wartość klucza ma być porównywana z kluczem sortowania elementu z hash_map, są przeszukiwane.

Wartość zwracana

Para Iteratory takie, że pierwszy jest lower_bound klucz, a drugi jest upper_bound klucza.

Pierwszy sterująca pary dostęp do pr zwrócone przez funkcję członka, użyj pr. pierwszy i do cofnięcia odwołania sterująca dolną granicą, użyj * (pr.pierwszy).Drugi sterująca pary dostęp do pr zwrócone przez funkcję członka, użyj pr. drugi i do cofnięcia odwołania sterująca górna granica, użyj * (pr.drugi).

Uwagi

W Visual C++ .NET 2003, członkowie <hash_map> i <hash_set> pliki nagłówkowe są już w przestrzeni nazw std, ale raczej zostały przeniesione do obszaru nazw stdext.Zobacz stdext nazw uzyskać więcej informacji.

Przykład

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

Wymagania

Nagłówek: <hash_map>

Przestrzeń nazw: stdext

Zobacz też

Informacje

hash_map Class

Standardowa biblioteka szablonu