-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathJumpSearch.c
103 lines (86 loc) · 3 KB
/
JumpSearch.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
#include "../Headers/JumpSearch.h"
#include "../../../System/Utils.h"
#include "../../../Unit Test/CuTest/CuTest.h"
#include <math.h>
/** This function will take an array and value,
* then it will search for the value using the jump search algorithm.
*
* Note: if the value doesn't exist the function will return minus one (-1).
*
* Note: the array must be sorted so the algorithm actually works.
*
* Time Complexity: O( sqrt(n) ).
*
* Space Complexity: O(1).
*
* @param arr the array pointer
* @param value the target value pointer
* @param length the length of the array
* @param elemSize the array elements size in bytes
* @param cmp the values comparator function
* @return it will return the index of the value if found, other wise it will return -1
*/
int jumpSearch(void *arr, void *value, int length, int elemSize, int (*cmp)(const void *, const void *)) {
if (arr == NULL) {
#ifdef C_DATASTRUCTURES_ERRORSTESTSTRUCT_H
ERROR_TEST->errorCode = NULL_POINTER;
return -1;
#else
fprintf(stderr, NULL_POINTER_MESSAGE, "passed array", "jump search");
exit(NULL_POINTER);
#endif
} else if (value == NULL) {
#ifdef C_DATASTRUCTURES_ERRORSTESTSTRUCT_H
ERROR_TEST->errorCode = INVALID_ARG;
return -1;
#else
fprintf(stderr, INVALID_ARG_MESSAGE, "value pointer", "jump search");
exit(INVALID_ARG);
#endif
} else if (cmp == NULL) {
#ifdef C_DATASTRUCTURES_ERRORSTESTSTRUCT_H
ERROR_TEST->errorCode = INVALID_ARG;
return -1;
#else
fprintf(stderr, INVALID_ARG_MESSAGE, "comparator function pointer", "jump search");
exit(INVALID_ARG);
#endif
} else if (length < 0) {
#ifdef C_DATASTRUCTURES_ERRORSTESTSTRUCT_H
ERROR_TEST->errorCode = INVALID_ARG;
return -1;
#else
fprintf(stderr, INVALID_ARG_MESSAGE, "array length", "jump search");
exit(INVALID_ARG);
#endif
} else if (elemSize <= 0) {
#ifdef C_DATASTRUCTURES_ERRORSTESTSTRUCT_H
ERROR_TEST->errorCode = INVALID_ARG;
return -1;
#else
fprintf(stderr, INVALID_ARG_MESSAGE, "element size", "jump search");
exit(INVALID_ARG);
#endif
}
int partitionSize = (int) sqrt(length);
char *oneBytePointer = (char *) arr;
char *partStart = oneBytePointer;
char *nextPartStart = oneBytePointer + elemSize * partitionSize;
while (partStart < oneBytePointer + length * elemSize) {
if (nextPartStart > oneBytePointer + length * elemSize)
nextPartStart = oneBytePointer + length * elemSize;
if (cmp(value, nextPartStart - elemSize) <= 0) {
for (char *currentPointer = partStart;
currentPointer < nextPartStart;
currentPointer += elemSize
) {
if (cmp(value, currentPointer) == 0)
return (currentPointer - oneBytePointer) / elemSize;
}
return -1;
}
partStart = nextPartStart;
nextPartStart += partitionSize * elemSize;
}
return -1;
}