UVA10474-5.1-Where is the Marble?
题目描述:
https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&category=835&problem=1415&mosmsg=Submission+received+with+ID+18650520
这个题其实就是给出一组乱序的数,问从小到大排序后某个数是否存在,如果存在,存在于什么位置。
题目分析:
就像题目说的,排序和查找。
这一章主要讲C++,这是第一题,接触到了C++的两个函数,排序函数sort和查找函数lower_bound.
排序函数
void sort(RanIt first, RanIt last);
输入数组首地址和结束地址区间,进行排序。
但是不知道为什么我取 其中一段区间并不给我排序=。=
从网上找的一篇讲sort的博客:http://blog.csdn.net/fly_yr/article/details/18894549
查找函数:
lower_bound( number, number + 8, 3) - number
同样首地址,结束地址,要查找的数,==但是对于返回值我还是有点奇怪=、=
http://blog.csdn.net/niushuai666/article/details/6734403
给出代码:
#include <iostream>
#include <cstdio>
#include<algorithm>
using namespace std;
int main()
{
int n,a;
//int i,
int num[10010];
int mark=0;
while(scanf("%d%d",&n,&a)!=EOF&&n)
{ mark++;
int i;
for(i=0;i<n;i++)
{
scanf("%d",&num[i]);
}
sort(num,num+n);
printf("CASE# %d:\n",mark);
while(a--)
{
int x;
scanf("%d",&x);
int answer=lower_bound(num,num+n,x)-num;
// printf("%d\n",answer);
if(num[answer]==x)
printf("%d found at %d\n",x,answer+1);
else
printf("%d not found\n",x);
}
}
return 0;
}