算法竞赛入门经典(第二版)大理石在哪儿 p108
#include <iostream>
#include <algorithm>
using namespace std;
const int maxn = 10010;
int n, q, x, a[maxn], k;
int main() {
while (scanf("%d%d", &n, &q) == 2 && n) {
printf("CASE# %d\n", ++k);
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;
if (a[p] == x) {
printf("%d found at %d\n", x, p + 1);
} else {
printf("%d not found\n", x);
}
}
}
return 0;
}
测试数据
4 1
2 3 5 1
5
5 2
1 3 3 3 1
2 3
http://www.cplusplus.com/reference/algorithm/lower_bound/
https://www.jianshu.com/p/cb0d5488bb6a
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的位置。
#### Markdown基本语法
https://www.jianshu.com/p/191d1e21f7ed