-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcourse.cpp
More file actions
60 lines (52 loc) · 1.23 KB
/
Copy pathcourse.cpp
File metadata and controls
60 lines (52 loc) · 1.23 KB
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
#include "Course.h"
static void merge(std::vector<Course>& arr, int l, int m, int r) {
int n1 = m - l + 1;
int n2 = r - m;
std::vector<Course> L(n1);
std::vector<Course> R(n2);
for (int i = 0; i < n1; ++i) {
L[i] = arr[l + i];
}
for (int j = 0; j < n2; ++j) {
R[j] = arr[m + 1 + j];
}
int i = 0, j = 0, k = l;
while (i < n1 && j < n2) {
if (L[i].code <= R[j].code) {
arr[k++] = L[i++];
}
else {
arr[k++] = R[j++];
}
}
while (i < n1) {
arr[k++] = L[i++];
}
while (j < n2) {
arr[k++] = R[j++];
}
}
void mergeSort(std::vector<Course>& arr, int l, int r) {
if (l >= r) {
return;
}
int m = l + (r - l) / 2;
mergeSort(arr, l, m);
mergeSort(arr, m + 1, r);
merge(arr, l, m, r);
}
int binarySearchCourse(const std::vector<Course>& arr, const std::string& code) {
int l = 0;
int r = static_cast<int>(arr.size()) - 1;
while (l <= r) {
int mid = l + (r - l) / 2;
if (arr[mid].code == code) {
return mid;
}
if (arr[mid].code < code) {
l = mid + 1;
}
else r = mid - 1;
}
return -1;
}