C ++ STL中的set :: lower_bound()函数

C ++ STL set :: lower_bound()函数 (C++ STL set::lower_bound() function)

set::lower_bound() function is a predefined function, it is used to get the lower bound of any element in a set.

set :: lower_bound()函数是预定义的函数,用于获取集合中任何元素的下限。

it finds lower bound of any desired element from the set. Lower bound of any_element means the first number in the set that's not considered to go before any_element. So, if any_element is itself present, then it's any_element else immediate next of any_element.

它从集合中找到任何所需元素的下限。 any_element的下限是指集合中第一个不被认为在any_element之前的数字 。 因此,如果any_element本身存在,则它是any_element的下一个any_element 。

Prototype:

原型:

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

Parameter: T key; //T is the data type

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

Return type: If lower_bound of the key exists in the set, Iterator pointer to the lower bound, Else, st.end()

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

Usage:

用法:

The function finds lower bound of any desired element from the set. Lower bound of x means the first number in the set that's not considered to go before x. So, if x is itself present, then it's x else immediate next of x.

该函数从集合中找到任何所需元素的下限。 x的下限表示不考虑在x之前出现的集合中的第一个数字。 因此,如果x本身存在,则x紧接x 。

Example:

例:

    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.lower_bound(6)
Print *it; //6
it=st.lower_bound(8)
Print *it; //10

Header file to be included:

包含的头文件:

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

C++ implementation:

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 lower_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<<"lower bound of 6 is "<<*(st.lower_bound(6));
return 0;
}

Output

输出量

Example of lower_bound function
inserting 4
inserting 6
inserting 10
Set contents are:
4 6 10
lower bound of 6 is 6

翻译自: https://www.includehelp.com/stl/set-lower_bound-function-in-cpp-stl.aspx

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/541230.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

flume入门

# example.conf: A single-node Flume configuration# Name the components on this agent #给那三个组件取个名字 a1.sources r1 a1.sinks k1 a1.channels c1# Describe/configure the source #类型, 从网络端口接收数据,在本机启动, 所以localhost, typespoolDir采集目录源…

原生js设置div隐藏或者显示_JavaScript动画方式控制div元素的隐藏和显示

jQuery实现此功能相对比较简单&#xff0c;具体参阅点击按钮动画方式隐藏和显示div一章节。结合CSS3实现此功能也非常便利和适合&#xff0c;具体参阅JavaScript与CSS3动画方式改变元素尺寸一章节。原生JavaScript实现稍显麻烦&#xff0c;下面就通过代码实例介绍一下如何实现此…

python线程任务run_Python线程类| 带有示例的run()方法

python线程任务runPython Thread.run()方法 (Python Thread.run() Method) Thread.run() method is an inbuilt method of the Thread class of the threading module in Python. This method is used to represent a threads activity. It calls the method expressed as the …

哪个计算机无法做到双屏显示,怎么启用双屏显示设置【图文介绍】

随着生活质量的提升&#xff0c;人们对于便利的要求越来越高&#xff0c;电脑的双屏显示成为现在用户越来越关注的对象之一。比如炒股操作中&#xff0c;人们既要关注大盘的走动趋势&#xff0c;又要关注特定股票的走势&#xff0c;在普通的屏幕上就需要不断地切换页面&#xf…

1.django 开发环境搭建

2019独角兽企业重金招聘Python工程师标准>>> 本教程使用的开发环境 本教程写作时开发环境的系统平台为 Windows 10 &#xff08;64 位&#xff09;&#xff0c;Python 版本为 3.5.2 &#xff08;64 位&#xff09;&#xff0c;Django 版本为 1.10.6。 建议尽可能地与…

改jpg_|我来改第04期|—人物海报设计

【我来改第04期】人物海报文案内容-Ad copyhttps://pan.baidu.com/s/16pz9_rcLXTGZ3xzKFjKN9g 密码: r57t设计要求-Requirement尺寸&#xff1a;1080(高)*650(宽)像素&#xff0c;大小不大于5m设计要求&#xff1a;以目前的蓝色为主要颜色(R:47,G:87,B:130)&#xff0c;画面体…

Java即时类| plus()方法与示例

即时类plus()方法 (Instant Class plus() method) Syntax: 句法&#xff1a; public Instant plus(TemporalAmount t_amt);public Instant plus(long amt, TemporalUnit t_unit);plus() method is available in java.time package. plus()方法在java.time包中可用。 plus(Temp…

计算机领域中dns是什么意思,dns错误是什么意思?dns错误要如何解决?

随着网络的普及&#xff0c;电脑已经成为我们生活中必不可少的物品&#xff0c;它可以帮助我们工作和学习以及娱乐。不过电脑在使用的过程中&#xff0c;常常会出现一些问题&#xff0c;小编觉得最常见也最让人心生烦躁的就是输入网址打开之后出现网页打不开&#xff0c;提示dn…

Launch Instruments

Launch Instruments 该仪器应用在Xcode应用程序&#xff0c;所以推出是在Xcode的最直接的方式。你也可以启动它间接地通过码头&#xff0c;启动&#xff0c;或命令行。The Instruments app lives inside the Xcode app, so the most direct way to launch it is from within Xc…

java clock计时_Java Clock类| offset()方法与示例

java clock计时Clock Class offset()方法 (Clock Class offset() method) offset() method is available in java.time package. offset()方法在java.time包中可用。 offset() method is used to generate a new Clock from the given base clock with added the given Duratio…

dataframe数据标准化处理_数据处理中的标准化、归一化究竟是什么?

关注上方“Python数据科学”&#xff0c;选择星标&#xff0c;精彩文章不会错过&#xff01;今天说一个比较重要的内容&#xff0c;无论是在算法建模还是在数据分析都比较常见&#xff1a;数据归一化和标准化。开始之前&#xff0c;请你先把网上看到的所有相关的博客、帖子都忘…

北航计算机学院博士机试考试题,北航2015考博真题回忆及全套资料 - 考博 - 小木虫 - 学术 科研 互动社区...

我是2015年毕业的应届硕士&#xff0c;报考了北航经管院的博士。想写这篇文很久了&#xff0c;现在复试完等最后结果中&#xff0c;把自己一路走来的经验分享给大家。1.报名报名之前很重要的一点就是联系导师。我是研二下&#xff0c;快放暑假了才开始联系导师。北航一般是11月…

用了Redis里面的map和set

map的操作用 hset&#xff0c;hget等 set的操作有 sadd sismember等 参考下面&#xff1a; http://blog.csdn.net/kwsy2008/article/details/48467441

java输出不同颜色_Java设计模式-策略模式、状态模式

推荐阅读&#xff1a;一只Tom猫&#xff1a;都是“Redis惹的祸”&#xff0c;害我差点挂在美团三面&#xff0c;真是“虚惊一场”&#xff01;java喵&#xff1a;6大面试技能树&#xff1a;JAVA基础JVM算法数据库计算机网络操作系统前言当代码中出现多重if-else语句或者switch语…

c++stl和std_std :: rotate()函数以及C ++ STL中的示例

cstl和stdC STL std :: rotate()函数 (C STL std::rotate() function) rotate() function is a library function of algorithm header, it is used to rotate left the elements of a sequence within a given range, it accepts the range (start, end) and a middle point,…

计算机硬盘正在工作应特别注意避免,初级计算机考试题库

计算机的初级基本*作包括基本信息栏、计算机的基础知识、五笔字型基础、*互联网的*作、常用办公外设的使用、计算机硬件的日常维护与保养和office办公工具的应用。下面是初级计算机考试题库&#xff0c;请参考&#xff01;1.以下与信息有关的设备计算中&#xff0c;用于存储信息…

abap 添加alv上的工具栏的按钮_神器必会!“世界上最好的编辑器Source Insight”...

前言“Source Insight(以下简称SI)是世界上最好的编辑器”&#xff0c;说这句话不知道会不会出门被打呢&#xff1f;-_- 中国古话说得好&#xff0c;“文无第一&#xff0c;武无第二”&#xff0c;所以不敢说SI是最好的&#xff0c;但是说是“最好的之一”绝对是妥妥的。它以丰…

SLF4J with Logback in a Maven Project | Mograblog

SLF4J with Logback in a Maven Project | Mograblog

Ruby中带有示例的Hash.key?(value)方法

Hash.key&#xff1f;(value)方法 (Hash.key?(value) Method) In this article, we will study about Hash.key?(value) Method. The working of the method cant be assumed because its quite a different name. Let us read its definition and understand its implementa…

计算机课伤害事故的防范,体育课安全伤害事故的防范与处理

摘 要&#xff1a;近年来&#xff0c;在教育改革的背景下&#xff0c;学校方面特别重视体育教学这一环节。做好体育教学工作&#xff0c;一方面能够使学生达到强身健体的目的&#xff0c;另一方面能够使学生的综合素质水平得到有效提升。然而&#xff0c;在体育课中还会发生一些…