UVA10474-5.1-Where is the Marble?

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;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值