-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathInsertionSort.c
80 lines (65 loc) · 2.26 KB
/
InsertionSort.c
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
#include "../Headers/InsertionSort.h"
#include "../../../System/Utils.h"
#include "../../../Unit Test/CuTest/CuTest.h"
/** This function will take an array then it sort it with the insertion sort algorithm.
*
* Time Complexity: best: O(n) , worst: O (n ^ 2).
*
* Space Complexity: O(1).
*
* @param arr the array pointer
* @param length the length of the array
* @param elemSize the size of the array elements in bytes
* @param cmp the comparator function pointer
*/
void insertionSort(void *arr, int length, int elemSize, int (*cmp)(const void *, const void *)) {
if (arr == NULL) {
#ifdef C_DATASTRUCTURES_ERRORSTESTSTRUCT_H
ERROR_TEST->errorCode = NULL_POINTER;
return;
#else
fprintf(stderr, NULL_POINTER_MESSAGE, "passed array", "insertion sort");
exit(NULL_POINTER);
#endif
} else if (cmp == NULL) {
#ifdef C_DATASTRUCTURES_ERRORSTESTSTRUCT_H
ERROR_TEST->errorCode = INVALID_ARG;
return;
#else
fprintf(stderr, INVALID_ARG_MESSAGE, "comparator function pointer", "insertion sort");
exit(INVALID_ARG);
#endif
} else if (length < 0) {
#ifdef C_DATASTRUCTURES_ERRORSTESTSTRUCT_H
ERROR_TEST->errorCode = INVALID_ARG;
return;
#else
fprintf(stderr, INVALID_ARG_MESSAGE, "array length", "insertion sort");
exit(INVALID_ARG);
#endif
} else if (elemSize <= 0) {
#ifdef C_DATASTRUCTURES_ERRORSTESTSTRUCT_H
ERROR_TEST->errorCode = INVALID_ARG;
return;
#else
fprintf(stderr, INVALID_ARG_MESSAGE, "element size", "insertion sort");
exit(INVALID_ARG);
#endif
}
char *oneBytePointer = (char *) arr;
for (int i = 0; i < length; i++) {
char *currentElement = (char *) malloc(elemSize);
memcpy(currentElement, oneBytePointer + i * elemSize, elemSize);
int rightIndex = 0;
for (int j = 0; j <= i; j++) {
if (cmp(currentElement, oneBytePointer + j * elemSize) <= 0) {
rightIndex = j;
break;
}
}
for (int j = i; j > rightIndex; j--)
memcpy(oneBytePointer + j * elemSize, oneBytePointer + (j - 1) * elemSize, elemSize);
memcpy(oneBytePointer + rightIndex * elemSize, currentElement, elemSize);
free(currentElement);
}
}