-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
LinearSearch.h
75 lines (56 loc) · 2.02 KB
/
LinearSearch.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
//
// Created by liuyubobobo on 11/21/17.
//
#ifndef OPTIONAL_03_LOWER_BOUND_AND_UPPER_BOUND_IN_BINARY_SEARCH_LINEARSEARCH_H
#define OPTIONAL_03_LOWER_BOUND_AND_UPPER_BOUND_IN_BINARY_SEARCH_LINEARSEARCH_H
#include <cassert>
using namespace std;
namespace LinearSearch{
// 线性查找法, 在一个有序数组arr中, 寻找大于等于target的元素的第一个索引
// 如果存在, 则返回相应的索引index
// 否则, 返回arr的元素个数 n
// 相当于 lower_bound
template<typename T>
int firstGreaterOrEqual(T arr[], int n, T target){
assert(n >= 0);
for(int i = 0 ; i < n ; i ++)
if(arr[i] >= target)
return i;
return n;
}
// 线性查找法, 在一个有序数组arr中, 寻找大于target的元素的第一个索引
// 如果存在, 则返回相应的索引index
// 否则, 返回arr的元素个数 n
// 相当于 upper_bound
template<typename T>
int firstGreaterThan(T arr[], int n, T target){
assert(n >= 0);
for(int i = 0 ; i < n ; i ++)
if(arr[i] > target)
return i;
return n;
}
// 线性查找法, 在一个有序数组arr中, 寻找小于等于target的元素的最大索引
// 如果存在, 则返回相应的索引index
// 否则, 返回 -1
template<typename T>
int lastLessOrEqual(T arr[], int n, T target){
assert(n >= 0);
for(int i = 0 ; i < n ; i ++)
if(arr[i] > target)
return i - 1;
return n - 1;
}
// 线性查找法, 在一个有序数组arr中, 寻找小于target的元素的最大索引
// 如果存在, 则返回相应的索引index
// 否则, 返回 -1
template<typename T>
int lastLessThan(T arr[], int n, T target){
assert(n >= 0);
for(int i = 0 ; i < n ; i ++)
if(arr[i] >= target)
return i - 1;
return n - 1;
}
}
#endif //OPTIONAL_03_LOWER_BOUND_AND_UPPER_BOUND_IN_BINARY_SEARCH_LINEARSEARCH_H