hash_multiset::equal_range
注意事項 |
---|
這個 API 已經過時。這個選項是 unordered_multiset Class。 |
傳回一組 Iterator 分別對應至一 hash_multiset 的第一個項目與指定的索引鍵大於的金鑰以及 hash_multiset 的第一個項目具有等於或大於按鍵。
pair <const_iterator, const_iterator> equal_range (
const Key& _Key
) const;
pair <iterator, iterator> equal_range (
const Key& _Key
);
參數
- _Key
引數索引鍵與項目的排序鍵比較要搜尋的 hash_multiset 的。
傳回值
第一種是 lower_bound 索引鍵和第二個的一組 Iterator 是索引鍵的 upper_bound 。
若要存取一組 pr 的第一個 Iterator 的成員函式傳回,使用 pr。first 和取值下限 Iterator,使用* (pr。first)。 若要存取一組 pr 的第二個 Iterator 由成員函式傳回,使用 pr。second 和取值上限 Iterator,使用* (pr。second)。
在 Visual C++ .NET Pocket PC, <hash_map> 和 <hash_set> 標頭檔 (Header File) 的成員不在 std 命名空間,,而是移至 stdext 命名空間。 如需詳細資訊,請參閱 stdext 命名空間。
範例
// hash_multiset_equal_range.cpp
// compile with: /EHsc
#include <hash_set>
#include <iostream>
int main( )
{
using namespace std;
using namespace stdext;
typedef hash_multiset<int> IntHSet;
IntHSet hms1;
hash_multiset <int> :: const_iterator hms1_RcIter;
hms1.insert( 10 );
hms1.insert( 20 );
hms1.insert( 30 );
pair <IntHSet::const_iterator, IntHSet::const_iterator> p1, p2;
p1 = hms1.equal_range( 20 );
cout << "The upper bound of the element with "
<< "a key of 20\nin the hash_multiset hms1 is: "
<< *(p1.second) << "." << endl;
cout << "The lower bound of the element with "
<< "a key of 20\nin the hash_multiset hms1 is: "
<< *(p1.first) << "." << endl;
// Compare the upper_bound called directly
hms1_RcIter = hms1.upper_bound( 20 );
cout << "A direct call of upper_bound( 20 ) gives "
<< *hms1_RcIter << "," << endl
<< "matching the 2nd element of the pair"
<< " returned by equal_range( 20 )." << endl;
p2 = hms1.equal_range( 40 );
// If no match is found for the key,
// both elements of the pair return end( )
if ( ( p2.first == hms1.end( ) )
&& ( p2.second == hms1.end( ) ) )
cout << "The hash_multiset hms1 doesn't have an element "
<< "with a key less than 40." << endl;
else
cout << "The element of hash_multiset hms1"
<< "with a key >= 40 is: "
<< *(p1.first) << "." << endl;
}
需求
標題: <hash_set>
命名空間: stdext