hash_set::equal_range
注意事項 |
---|
這個 API 已經過時。這個選項是 unordered_set Class。 |
傳回一組 Iterator 分別對應至一個雜湊集合的第一個與相等元素具有指定索引鍵的項目以及在雜湊集合的第一個項目的索引鍵。索引鍵大於的金鑰。
pair <const_iterator, const_iterator> equal_range (
const Key& _Key
) const;
pair <iterator, iterator> equal_range (
const Key& _Key
);
參數
- _Key
引數索引鍵與項目的排序鍵會比較搜尋字串 hash_set 的。
傳回值
第一種是 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_set_equal_range.cpp
// compile with: /EHsc
#include <hash_set>
#include <iostream>
int main( )
{
using namespace std;
using namespace stdext;
typedef hash_set<int> IntHSet;
IntHSet hs1;
hash_set <int> :: const_iterator hs1_RcIter;
hs1.insert( 10 );
hs1.insert( 20 );
hs1.insert( 30 );
pair <IntHSet::const_iterator, IntHSet::const_iterator> p1, p2;
p1 = hs1.equal_range( 20 );
cout << "The upper bound of the element with "
<< "a key of 20 in the hash_set hs1 is: "
<< *(p1.second) << "." << endl;
cout << "The lower bound of the element with "
<< "a key of 20 in the hash_set hs1 is: "
<< *(p1.first) << "." << endl;
// Compare the upper_bound called directly
hs1_RcIter = hs1.upper_bound( 20 );
cout << "A direct call of upper_bound( 20 ) gives "
<< *hs1_RcIter << "," << endl
<< "matching the 2nd element of the pair"
<< " returned by equal_range( 20 )." << endl;
p2 = hs1.equal_range( 40 );
// If no match is found for the key,
// both elements of the pair return end( )
if ( ( p2.first == hs1.end( ) ) && ( p2.second == hs1.end( ) ) )
cout << "The hash_set hs1 doesn't have an element "
<< "with a key greater than or equal to 40." << endl;
else
cout << "The element of hash_set hs1 with a key >= 40 is: "
<< *(p1.first) << "." << endl;
}
需求
標題: <hash_set>
命名空間: stdext