题解 | #查找#

查找

https://www.nowcoder.com/practice/8e0c0e8c78944847be9bca54b59d713f

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

int main()
{
	set<int> s;
	//write your code here......
	int n, m;

	cin >> n >> m;

	for (int i = 0; i < n; ++i)
	{
		int num;
		cin >> num;
		s.insert(num);
	}	

	set<int>::iterator it;
	for (int i = 0; i < m; ++i)
	{
		int x;
		cin >> x;

		it = s.upper_bound(x);

		if (it != s.end())
		{
			cout << *it << endl;
		}
		else 
		{
			cout << -1 << endl;
		}
	}
	
	return 0;
}

使用upper_bound()

upper_bound(data)用于寻找大于data,返回iterator

全部评论

相关推荐

10-09 22:05
666 C++
找到工作就狠狠玩CSGO:报联合国演讲,报电子烟设计与制造
点赞 评论 收藏
分享
10-13 17:47
门头沟学院 Java
wulala.god:图一那个善我面过,老板网上找的题库面的
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务