5-1 UVa10474 Where is the Marble?

思路:排序后查找。

个人博客几个要点函数:

ForwardIter lower_bound(ForwardIter first, ForwardIter last,const _Tp& val)算法返回一个非递减序列[first, last)中的第一个大于等于值val的位置。

ForwardIter upper_bound(ForwardIter first, ForwardIter last, const _Tp& val)算法返回一个非递减序列[first, last)中第一个大于val的位置。

ps:函数lower_bound()在first和last中的前闭后开区间进行二分查找,返回大于或等于val的第一个元素位置。如果所有元素都小于val,则返回last的位置,且last的位置是越界的!

个人博客代码如下:

#include<iostream>
#include<algorithm>
using namespace std;
const int maxn = 10000;
int main()
{
int n,k,x,a[maxn],kase=0;
while(scanf(“%d%d”,&n,&k)==2&&n)
{
printf(“CASE# %d:\n”,++kase);
for(int i=0;i<n;i++) scanf(“%d”,&a[i]);
sort(a,a+n);//排序
while(k–)
{
scanf(“%d”,&x);
int tmp=lower_bound(a,a+n,x)-a;
if(a[tmp]==x) printf(“%d found at %d\n”,x,tmp+1);
else printf(“%d not found\n”,x);
}
}
return 0;

}
文章转载自洪学林 个人博客http://www.hongxuelin.com/

你可能感兴趣的:(5-1 UVa10474 Where is the Marble?)