-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathn_array_sorts.c
184 lines (134 loc) · 3.58 KB
/
n_array_sorts.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
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
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include "n_array_int.h"
#define SWAP_void(a, b) \
{ register void *tmp = a; \
a = b; \
b = tmp; \
}
/* Function is based on:
**
** quicksort.c -- quicksort integer array
** public domain by Raymond Gardner 12/91
*/
void trurl_qsort_voidp_arr(void **arr, size_t arr_size, t_fn_cmp cmpf)
{
register unsigned i, j, ln, rn;
while (arr_size > 1) {
SWAP_void(arr[0], arr[arr_size / 2]);
for (i = 0, j = arr_size;;) {
do {
j--;
} while (j && cmpf(arr[j], arr[0]) > 0);
do {
i++;
} while (i < j && cmpf(arr[i], arr[0]) < 0);
if (i >= j)
break;
SWAP_void(arr[i], arr[j]);
}
SWAP_void(arr[j], arr[0]);
ln = j;
rn = arr_size - ++j;
if (ln < rn) {
trurl_qsort_voidp_arr(arr, ln, cmpf);
arr += j;
arr_size = rn;
} else {
trurl_qsort_voidp_arr(&arr[j], rn, cmpf);
arr_size = ln;
}
}
}
void trurl_isort_voidp_arr(void **arr, size_t arr_size, t_fn_cmp cmpf)
{
register size_t i, j;
#if ENABLE_TRACE
int n = 0;
if (arr_size > 1000)
DBGF("%d\n", arr_size);
#endif
for (i = 1; i < arr_size; i++) {
register void *tmp = arr[i];
j = i;
#if ENABLE_TRACE
if (arr_size > 1000 && i % 100 == 0)
DBGF("(%d) iter = %d, n = %d\n", arr_size, i, n);
#endif
while (j > 0 && cmpf(tmp, arr[j - 1]) < 0) {
arr[j] = arr[j - 1];
j--;
#if ENABLE_TRACE
n++;
#endif
}
arr[j] = tmp;
}
}
static inline t_fn_cmp autosort(tn_array *arr, t_fn_cmp cmpf, int *set_sorted)
{
*set_sorted = 1;
if (cmpf == NULL) {
if (arr->cmp_fn == NULL) {
trurl_die("n_array_sort: compare function is NULL\n");
return NULL;
}
cmpf = arr->cmp_fn;
} else if (cmpf != arr->cmp_fn) {
TN_ARRAY_clr_sorted(arr);
*set_sorted = 0;
}
return cmpf;
}
#define SORT_SORT 0
#define SORT_QSORT 1
#define SORT_ISORT 2
static inline tn_array *n_array_sort_internal(tn_array *arr, t_fn_cmp cmpf, int alg)
{
int set_sorted;
cmpf = autosort(arr, cmpf, &set_sorted);
if ((arr->flags & TN_ARRAY_AUTOSORTED) && n_array_is_sorted(arr))
return arr;
switch (alg) {
case SORT_SORT:
if (arr->items > 10)
trurl_qsort_voidp_arr(&arr->data[arr->start_index], arr->items, cmpf);
else
trurl_isort_voidp_arr(&arr->data[arr->start_index], arr->items, cmpf);
break;
case SORT_QSORT:
trurl_qsort_voidp_arr(&arr->data[arr->start_index], arr->items, cmpf);
break;
case SORT_ISORT:
trurl_isort_voidp_arr(&arr->data[arr->start_index], arr->items, cmpf);
break;
}
if (set_sorted)
TN_ARRAY_set_sorted(arr);
return arr;
}
tn_array *n_array_sort_ex(tn_array *arr, t_fn_cmp cmpf)
{
return n_array_sort_internal(arr, cmpf, SORT_SORT);
}
tn_array *n_array_qsort_ex(tn_array *arr, t_fn_cmp cmpf)
{
return n_array_sort_internal(arr, cmpf, SORT_QSORT);
}
tn_array *n_array_isort_ex(tn_array *arr, t_fn_cmp cmpf)
{
return n_array_sort_internal(arr, cmpf, SORT_ISORT);
}
tn_array *n_array_reverse(tn_array *arr)
{
int i, j;
i = arr->start_index;
j = arr->items - 1;
while (i < j) {
SWAP_void(arr->data[i], arr->data[j]);
i++;
j--;
}
return arr;
}