当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ set::upper_bound()用法及代码示例


C++ STL set::upper_bound() 函数

set::upper_bound() 函数是一个预定义的函数,用于获取集合中任意元素的上界。

它从集合中找到任何所需元素的上限。的上限any_element表示紧邻的集合中的第一个数字any_element

原型:

    set<T> st; //declaration
    set<T> st::iterator it; //iterator declaration
    it=st.upper_bound(T key);

参数: T key;//T是数据类型

返回类型:如果upper_bound键存在于指向上限的集合迭代器指针中,否则,st.end()

用法:

该函数从集合中找到任何所需元素的上限。的上限x是 x 的下一个。

例:

    For a set of integer,
    set<int> st;
    st.insert(6);
    st.insert(4);
    st.insert(10);
    set content://sorted always(ordered)
        4
        6
        10

    it=st.upper_bound(4)
    Print *it; //6

要包含的头文件:

    #include <iostream>
    #include <set>
    OR
    #include <bits/stdc++.h>

C++ 实现:

#include <bits/stdc++.h>
using namespace std;

void printSet(set<int> st){
	set<int>::iterator it;
	cout<<"Set contents are:\n";
	if(st.empty()){
		cout<<"empty set\n";
		return;
	}
	for(it=st.begin();it!=st.end();it++)
		cout<<*it<<" ";
	cout<<endl;
}

int main(){
	cout<<"Example of upper_bound function\n";
	set<int> st;
	set<int>::iterator it;
	cout<<"inserting 4\n";
	st.emplace(4);
	cout<<"inserting 6\n";
	st.emplace(6);
	cout<<"inserting 10\n";
	st.emplace(10);

	printSet(st); //printing current set

	cout<<"upper bound of 6 is "<<*(st.upper_bound(6));
	
	return 0;
}

输出

Example of upper_bound function
inserting 4
inserting 6
inserting 10
Set contents are:
4 6 10
upper bound of 6 is 10 


相关用法


注:本文由纯净天空筛选整理自 set::upper_bound() function in C++ STL。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。