-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathBubbleSort.c
75 lines (60 loc) · 2.01 KB
/
BubbleSort.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
#include "../Headers/BubbleSort.h"
#include "../Headers/SwapFunction.h"
#include "../../../System/Utils.h"
#include "../../../Unit Test/CuTest/CuTest.h"
/** This function will take an array then it sort it with the bubble 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 bubbleSort(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", "bubble sort");
exit(NULL_POINTER);
#endif
} else if (cmp == NULL) {
#ifdef C_DATASTRUCTURES_ERRORSTESTSTRUCT_H
ERROR_TEST->errorCode = INVALID_ARG;
#else
fprintf(stderr, INVALID_ARG_MESSAGE, "comparator function pointer", "bubble sort");
exit(INVALID_ARG);
#endif
} else if (length < 0) {
#ifdef C_DATASTRUCTURES_ERRORSTESTSTRUCT_H
ERROR_TEST->errorCode = INVALID_ARG;
#else
fprintf(stderr, INVALID_ARG_MESSAGE, "array length", "bubble sort");
exit(INVALID_ARG);
#endif
} else if (elemSize <= 0) {
#ifdef C_DATASTRUCTURES_ERRORSTESTSTRUCT_H
ERROR_TEST->errorCode = INVALID_ARG;
#else
fprintf(stderr, INVALID_ARG_MESSAGE, "element size", "bubble sort");
exit(INVALID_ARG);
#endif
}
short swapFlag = 0;
char *oneBytePointer = (char *) arr;
for (int i = length - 1; i > 0; i--) {
swapFlag = 0;
for (int j = 0; j < i; j++) {
if (cmp(oneBytePointer + j * elemSize, oneBytePointer + (j + 1) * elemSize) > 0) {
swap(oneBytePointer + j * elemSize, oneBytePointer + (j + 1) * elemSize, elemSize);
swapFlag = 1;
}
}
if (!swapFlag)
break;
}
}