std::set::lower_bound
提供:cppreference.com
|
|
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
| iterator lower_bound( const Key& key ); |
||
| const_iterator lower_bound( const Key& key ) const; |
||
keyより小さくない'である最初の要素を指すイテレータを返す.Original:
Returns an iterator pointing to the first element that is not less than
key.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
目次 |
[編集] パラメータ
| key | - | に要素を比較するためのキー値
Original: key value to compare the elements to The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[編集] 値を返します
keyより'小さくない最初の要素を指すイテレータを返す。このような要素が見つからない場合は、終了反復子は(end()を参照)が返されます.Original:
iterator pointing to the first element that is not less than
key. If no such element is found, a past-the-end iterator (see end()) is returned.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[編集] 複雑
容器の大きさの対数.
Original:
Logarithmic in the size of the container.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[編集] も参照してください
| 特定のキーと一致する要素の範囲を返します Original: returns range of elements matching a specific key The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (パブリックメンバ関数) | |
| 指定した要素より 大きい 最初の要素を指すイテレータを返す (パブリックメンバ関数) | |