-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path4sem_54.cpp
102 lines (78 loc) · 2.33 KB
/
4sem_54.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
#include <iostream>
#include <stack>
#include <fstream>
#include <ctime>
using namespace std;
void swap(int& a, int& b) {
int temp = a;
a = b;
b = temp;
}
int partition(int arr[], int low, int high, ofstream& outfile) {
int pivot = arr[high];
int i = low - 1;
clock_t start_time = clock(); // Start time of partitioning
for (int j = low; j <= high - 1; j++) {
if (arr[j] <= pivot) {
i++;
swap(arr[i], arr[j]);
}
}
swap(arr[i + 1], arr[high]);
clock_t end_time = clock(); // End time of partitioning
double execution_time = double(end_time - start_time) / CLOCKS_PER_SEC;
outfile << low << "," << high << "," << execution_time << endl; // Write time interval to file
return (i + 1);
}
int iterativeQuickSort(int arr[], int low, int high, ofstream& outfile) {
stack<int> stack;
int num_calls = 0;
stack.push(low);
stack.push(high);
while (!stack.empty()) {
high = stack.top();
stack.pop();
low = stack.top();
stack.pop();
int pvt_idx = partition(arr, low, high, outfile);
if (low < pvt_idx - 1) {
stack.push(low);
stack.push(pvt_idx - 1);
num_calls++;
}
if (high > pvt_idx + 1) {
stack.push(pvt_idx + 1);
stack.push(high);
num_calls++;
}
}
return num_calls;
}
void printArray(int arr[], int size) {
for (int i = 0; i < size; i++)
cout << arr[i] << " ";
cout << endl;
}
int main() {
srand(time(0)); // Seed for random number generation
int n;
cout << "Enter the number of elements: ";
cin >> n;
int arr[10000];
for (int i = 0; i < n; ++i)
arr[i] = rand() % 1000;
ofstream outfile("iterative_execution_times.csv");
if (!outfile.is_open()) {
cerr << "Error opening file!" << endl;
return 1;
}
outfile << "Low,High,ExecutionTime" << endl;
cout << "Given array is \n";
printArray(arr, n);
int num_calls = iterativeQuickSort(arr, 0, n - 1, outfile);
cout << "Sorted array is \n";
printArray(arr, n);
cout << "Number of recursive calls: " << num_calls << endl;
outfile.close();
return 0;
}