C++ Set 库 - upper_bound 函数



描述

它返回一个迭代器,指向容器中第一个被认为在 val 之后的元素。

声明

以下是 std::set::upper_bound 在不同 C++ 版本中的工作方式。

C++98

iterator upper_bound (const value_type& val) const;

C++11

  iterator upper_bound (const value_type& val);
const_iterator upper_bound (const value_type& val) const;

返回值

它返回一个迭代器,指向容器中第一个被认为在 val 之后的元素。

异常

如果抛出异常,容器中没有任何更改。

时间复杂度

时间复杂度取决于对数。

示例

以下示例显示了 std::set::upper_bound 的用法。

#include <iostream>
#include <set>

int main () {
   std::set<int> myset;
   std::set<int>::iterator itlow,itup;

   for (int i = 1; i < 10; i++) myset.insert(i*10);

   itup = myset.upper_bound (60);

   myset.erase(itup);

   std::cout << "myset contains:";
   for (std::set<int>::iterator it = myset.begin(); it!=myset.end(); ++it)
      std::cout << ' ' << *it;
   std::cout << '\n';

   return 0;
}

以上程序将编译并正确执行。

myset contains: 10 20 30 40 50 60 80 90
set.htm
广告