hash_set::upper_bound (STL/CLR)
指定したキーに一致する範囲の最後を検索します。
iterator upper_bound(key_type key);
パラメーター
- key
検索するキー値。
解説
メンバー関数は key と同じバケットにハッシュし、 key等しい場合は、被制御シーケンスの最後の要素 X を決定します。そのような要素が存在しないか、 X が被制御シーケンスの最後の要素である場合、 hash_set::end (STL/CLR)を返します(); それ以外の場合は Xを超える最初の要素を指定する反復子を返します。指定したキーに一致する被制御シーケンスの要素のシーケンスの末尾を現在の検索に使用します。
使用例
// cliext_hash_set_upper_bound.cpp
// compile with: /clr
#include <cliext/hash_set>
typedef cliext::hash_set<wchar_t> Myhash_set;
int main()
{
Myhash_set c1;
c1.insert(L'a');
c1.insert(L'b');
c1.insert(L'c');
// display initial contents " a b c"
for each (wchar_t elem in c1)
System::Console::Write(" {0}", elem);
System::Console::WriteLine();
System::Console::WriteLine("upper_bound(L'x')==end() = {0}",
c1.upper_bound(L'x') == c1.end());
System::Console::WriteLine("*upper_bound(L'a') = {0}",
*c1.upper_bound(L'a'));
System::Console::WriteLine("*upper_bound(L'b') = {0}",
*c1.upper_bound(L'b'));
return (0);
}
必要条件
ヘッダー:<cliext/hash_set>
名前空間: の cliext