-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmy_complexity_calc.c
More file actions
241 lines (205 loc) · 6.24 KB
/
my_complexity_calc.c
File metadata and controls
241 lines (205 loc) · 6.24 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
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <math.h>
#include <string.h>
#include "lib/my_sort.h"
#include "lib/my_print.h"
/* Calculate estimated time of sorting algorithm.
* Takes a sorting function as parameter.
* Returns time in seconds. On error returns -1. */
double
my_get_estimated_time_sort (char *sorting_function_name,
long *file_numbers_array, long lines_count)
{
long *array;
int i;
int lines = 30000;
if (lines_count > lines){
array = malloc (lines * sizeof (long));
if (array == NULL)
{
return -1;
}
for (i = 0; i < lines; i++)
{
array[i] = file_numbers_array[i];
}
double time_estimated, time_exec;
clock_t time_start = clock ();
if (strcmp (sorting_function_name, "bubbleSort")) // O(n^2)
{
if (bubbleSort (array, lines) == 0)
{
my_print_error ("Error on bubbleSort.", "");
return 0;
}
}
else if (strcmp (sorting_function_name, "insertionSort") == 0) // O(n^2)
{
if (insertionSort (array, lines) == 0)
{
my_print_error ("Error on insertionSort.", "");
return 0;
}
}
else if (strcmp (sorting_function_name, "selectionSort") == 0) //O(n^2)
{
if (selectionSort (array, lines) == 0)
{
my_print_error ("Error on selectionSort.", "");
return 0;
}
}
else if (strcmp (sorting_function_name, "mergeSort") == 0) //O(nlogn)
{
if (mergeSort (array, 0, lines - 1) == 0)
{
my_print_error ("Error on mergeSort.", "");
return 0;
}
}
else if (strcmp (sorting_function_name, "quickSort") == 0) //O(nlogn)
{
if (quickSort (array, 0, lines - 1) == 0)
{
my_print_error ("Error on quickSort.", "");
return 0;
}
}
else if (strcmp (sorting_function_name, "heapSort") == 0) //O(nlogn)
{
if (heapSort (array, lines) == 0)
{
my_print_error ("Error on heapSort.", "");
return 0;
}
}
else if (strcmp (sorting_function_name, "countSort") == 0) //O(nlogn)
{
if (countSort (array, lines) == 0)
{
my_print_error ("Error on countSort.", "");
return 0;
}
}
else if (strcmp (sorting_function_name, "radixSort") == 0)
{
if (radixSort (array, lines) == 0)
{
my_print_error ("Error on radixSort.", "");
return 0;
}
}
else if (strcmp (sorting_function_name, "bucketSort") == 0)
{
if (bucketSort (array, lines) == 0)
{
my_print_error ("Error on bucketSort.", "");
return 0;
}
}
else if (strcmp (sorting_function_name, "bingoSort") == 0)
{
if (bingoSort (array, lines) == 0)
{
my_print_error ("Error on bingoSort.", "");
return 0;
}
}
else if (strcmp (sorting_function_name, "shellSort") == 0)
{
if (shellSort (array, lines) == 0)
{
my_print_error ("Error on shellSort.", "");
return 0;
}
}
else if (strcmp (sorting_function_name, "timSort") == 0)
{
if (timSort (array, lines) == 0)
{
my_print_error ("Error on timSort.", "");
return 0;
}
}
else if (strcmp (sorting_function_name, "combSort") == 0)
{
if (combSort (array, lines) == 0)
{
my_print_error ("Error on combSort.", "");
return 0;
}
}
else if (strcmp (sorting_function_name, "pingeonholeSort") == 0)
{
if (pigeonholeSort (array, lines) == 0)
{
my_print_error ("Error on pingeonholeSort.", "");
return 0;
}
}
else if (strcmp (sorting_function_name, "cycleSort") == 0)
{
if (cycleSort (array, lines) == 0)
{
my_print_error ("Error on cycleSort.", "");
return 0;
}
}
else if (strcmp (sorting_function_name, "cocktailSort") == 0)
{
if (cocktailSort (array, lines) == 0)
{
my_print_error ("Error on cocktailSort.", "");
return 0;
}
}
else if (strcmp (sorting_function_name, "bitonicSort") == 0)
{
if (bitonicSort (array, 0, lines, 1) == 0)
{
my_print_error ("Error on bitonicSort.", "");
return 0;
}
}
else if (strcmp (sorting_function_name, "pancakeSort") == 0)
{
if (pancakeSort (array, lines) == 0)
{
my_print_error ("Error on pancakeSort.", "");
return 0;
}
}
else if (strcmp (sorting_function_name, "bogoSort") == 0)
{
if (bogoSort (array, lines) == 0)
{
my_print_error ("Error on bogoSort.", "");
return 0;
}
}
else if (strcmp (sorting_function_name, "gnomeSort") == 0)
{
if (gnomeSort (array, lines) == 0)
{
my_print_error ("Error on gnomeSort.", "");
return 0;
}
}
else
{
my_print_error ("Unknown command.\n", "");
return 0;
}
clock_t time_end = clock ();
time_exec = (double) (time_end - time_start) / CLOCKS_PER_SEC;
time_estimated = (lines_count / lines) * time_exec;
free (array);
return time_estimated;
}
else
{
return 0; /* If lines_count < lines, sorting time is negligible. */
}
}