lower_bound/前提有序/采用二分查找

本文详细解析了C++标准模板库(STL)中lower_bound函数的应用,通过两个示例展示了如何在vector和set容器中查找指定元素的位置。首先,在一个整数vector中查找大于等于2的元素下标;其次,在一个动态调整大小的数组中,使用lower_bound进行二分查找,判断元素是否存在于数组中,并输出其位置。
摘要由CSDN通过智能技术生成
#include<cstdio>
#include<cstring>
#include<iostream>
#include<algorithm>
#include<cmath>
#include<vector>
#include<set>
using namespace std;
const int maxn=10010;
const int N=10;

int main(){

	vector<int> v;
	v.push_back(1);
	v.push_back(1);
	v.push_back(1);
	v.push_back(4);
	
	cout<<lower_bound(v.begin(),v.end(),2)-v.begin();

	set<int> st;
	st.lower_bound()

	return 0;
}
#include<cstdio>
#include<cstring>
#include<iostream>
#include<algorithm>
#include<cmath>

using namespace std;
const int maxn=10010;
const int N=10;

int a[maxn];

int main(){
	
	int n,q,x;
	int kase=0;
	
	while(scanf("%d%d",&n,&q)!=-1&&n){
		printf("%d",++kase);
		
		for(int i=0;i<n;i++) scanf("%d",a+i);
		sort(a,a+n);
		
		while(q--){
				
			scanf("%d",&x);
			int p=lower_bound(a,a+n,x)-a;
			
			if(p<n&&a[p]==x) printf("%d found at %d\n",x,p+1);
			else printf("%d not found\n",x);
		}
		
	}

	return 0;
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值