-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path4sem_21.cpp
62 lines (44 loc) · 1.33 KB
/
4sem_21.cpp
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
#include <iostream>
#include <vector>
#include <fstream>
#include <ctime>
#include <cstdlib>
#include <algorithm>
using namespace std;
int binarySearch(const vector<int>& arr, int key) {
int low = 0, high = arr.size()-1 ;
while (low < high) {
int mid = low + (high - low) / 2;
if (arr[mid] == key) {
return mid;
} else if (arr[mid] < key) {
low = mid + 1;
} else {
high = mid - 1;
}
}
return -1;
}
int main() {
ofstream outfile("execution_times.csv11");
if (!outfile.is_open()) {
cerr << "Error opening file!" << endl;
return 1;
}
outfile << "Size,ExecutionTime" << endl;
for (int n = 100; n <= 1000; n += 100) {
vector<int> elements(n);
for (int i = 0; i < n; i++) {
elements[i] = i + 1;
}
int key = rand() % n;
clock_t startTime = clock();
int result = binarySearch(elements, key);
clock_t endTime = clock();
double executionTime = double(endTime - startTime) / CLOCKS_PER_SEC;
cout << "Size: " << n << ", Execution Time: " << executionTime << " seconds" << endl;
outfile << n << "," << executionTime << endl;
}
outfile.close();
return 0;
}