我是靠谱客的博主 哭泣眼神,最近开发中收集的这篇文章主要介绍经典第五章例5.1 UVa 10474 Where is the Marble?(排序与检索),觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
http://7xjob4.com1.z0.glb.clouddn.com/53e5c6d66221525b0c18113b513fc3fb
很简单的排序和检索。
下面是AC代码:
#include<cstdio>
#include<algorithm>
using namespace std;
const int maxn=10000;
int main()
{
int n,q,x,a[maxn],kase=0;
while(scanf("%d%d",&n,&q)==2&&n)
{
printf("CASE# %d:n",++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;//lower_bound的作用是查找“大于或等于x”的第一个位置
if(a[p]==x)
{
printf("%d found at %dn",x,p+1);
}
else
{
printf("%d not foundn",x);
}
}
}
return 0;
}
最后
以上就是哭泣眼神为你收集整理的经典第五章例5.1 UVa 10474 Where is the Marble?(排序与检索)的全部内容,希望文章能够帮你解决经典第五章例5.1 UVa 10474 Where is the Marble?(排序与检索)所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复