在本文中,我们将讨论 C++ STL 中的 set::upper_bound() 及其语法、工作方式和返回值。
C++ STL 中的 Set 是什么?
C++ STL 中的集合是容器,它们必须按一般顺序具有唯一元素。集合必须具有唯一的元素,因为元素的值标识了元素。一旦在 set 容器中添加了一个值,以后就无法修改,尽管我们仍然可以将这些值删除或添加到 set 中。集合用作二叉搜索树。
什么是 set::upper_bound()?
upper_bound() 是 C++ STL 中的内置函数,它在 <set> 头文件中声明。 upper_bound() 返回一个迭代器,指向我们希望找到其上限的值的上限。该函数返回指向我们希望找到其上限的值的下一个元素的迭代器。
用法
name_of_set.upper_bound(const type_t& value);
参数
此函数接受一个参数,即要找到其上限的值。
返回值
此函数返回一个迭代器,指向下一个大于该值的元素
示例
Input:set<int> myset = {1, 2, 3, 4, 5};
Myset.upper_bound(3);
Output:Upper bound = 4
示例
#include <bits/stdc++.h>
using namespace std;
int main(){
set<int> Set;
Set.insert(9);
Set.insert(7);
Set.insert(5);
Set.insert(3);
Set.insert(1);
cout<<"Elements are:";
for (auto i = Set.begin(); i!= Set.end(); i++)
cout << *i << " ";
auto i = Set.upper_bound(5);
cout <<"\nupper bound of 5 in the set is:";
cout << (*i) << endl;
i = Set.upper_bound(1);
cout<<"upper bound of 1 in the set is:";
cout << (*i) << endl;
return 0;
}
输出
如果我们运行上面的代码,它将生成以下输出 -
upper bound of 5 in the set is:7 upper bound of 1 in the set is:3
示例
#include <iostream>
#include <set>
int main (){
std::set<int> Set;
std::set<int>::iterator one, end;
for (int i=1; i<10; i++)
Set.insert(i*10);
one = Set.lower_bound (20);
end = Set.upper_bound (40);
Set.erase(one , end); // 10 20 70 80 90
std::cout<<"Elements are:";
for (std::set<int>::iterator i = Set.begin(); i!=Set.end(); ++i)
std::cout << ' ' << *i;
std::cout << '\n';
return 0;
}
输出
如果我们运行上面的代码,它将生成以下输出 -
Elements are:10 50 60 70 80 90
相关用法
- C++ Set cbegin()、cend()用法及代码示例
- C++ Set set()用法及代码示例
- C++ Set max_size()用法及代码示例
- C++ Set crbegin()、crend()用法及代码示例
- C++ Set equal_range()用法及代码示例
- C++ Set emplace_hint()用法及代码示例
- C++ Set count()用法及代码示例
- C++ Set insert()用法及代码示例
- C++ Set get_allocator()用法及代码示例
- C++ String back()用法及代码示例
- C++ String append()用法及代码示例
- C++ Stack push()用法及代码示例
- C++ String Assign()用法及代码示例
- C++ Stack empty()用法及代码示例
- C++ SHRT_MIN用法及代码示例
- C++ Stack size()用法及代码示例
- C++ String size()用法及代码示例
- C++ String resize()用法及代码示例
- C++ String swap()用法及代码示例
- C++ complex Sinh()用法及代码示例
注:本文由纯净天空筛选整理自Sunidhi Bansal大神的英文原创作品 Set upper_bound() function in C++ STL。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。