forked from carvalho/numlua
-
Notifications
You must be signed in to change notification settings - Fork 4
/
msort.c
431 lines (385 loc) · 9.2 KB
/
msort.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
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
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
#include <lua.h>
#include <complex.h>
#include "numlua.h"
/* Adapted from ssort.f (translated by f2c) in SLATEC: */
/* ***PURPOSE Sort an array and optionally make the same interchanges in */
/* an auxiliary array. The array may be sorted in increasing */
/* or decreasing order. A slightly modified QUICKSORT */
/* algorithm is used. */
/* ***LIBRARY SLATEC */
/* ***CATEGORY N6A2B */
/* ***TYPE SINGLE PRECISION (SSORT-S, DSORT-D, ISORT-I) */
/* ***KEYWORDS SINGLETON QUICKSORT, SORT, SORTING */
/* ***AUTHOR Jones, R. E., (SNLA) */
/* Wisniewski, J. A., (SNLA) */
#define SORTDIM (31)
/* assume mx is not a section and complex */
int sort1c (nl_Matrix *mx) {
int i, j, k, l, m, ij;
int il[SORTDIM], iu[SORTDIM];
int n = mx->size;
int s = mx->stride;
lua_Number r;
nl_Complex t, tt;
nl_Complex *x = (nl_Complex *) mx->data;
if (n < 1) return 0;
m = 1;
i = 0;
j = (n - 1) * s;
r = .375;
L20:
if (i == j) goto L60;
if (r <= .5898437)
r += .0390625;
else
r += -.21875;
L30:
k = i;
/* Select a central element of the array and save it in location T */
ij = i + ((int) ((j - i) / s * r)) * s;
t = x[ij];
/* If first element of array is greater than T, interchange with T */
if (cgt(x[i], t)) {
x[ij] = x[i]; x[i] = t; t = x[ij];
}
l = j;
/* If last element of array is less than than T, interchange with T */
if (clt(x[j], t)) {
x[ij] = x[j]; x[j] = t; t = x[ij];
/* If first element of array is greater than T, interchange with T */
if (cgt(x[i], t)) {
x[ij] = x[i]; x[i] = t; t = x[ij];
}
}
/* Find an element in the second half of the array which is smaller than T */
L40:
l -= s;
if (cgt(x[l], t)) goto L40;
/* Find an element in the first half of the array which is greater than T */
L50:
k += s;
if (clt(x[k], t)) goto L50;
/* Interchange these elements */
if (k <= l) {
tt = x[l]; x[l] = x[k]; x[k] = tt;
goto L40;
}
/* Save upper and lower subscripts of the array yet to be sorted */
if (l - i > j - k) {
il[m - 1] = i;
iu[m - 1] = l;
i = k;
++m;
}
else {
il[m - 1] = k;
iu[m - 1] = j;
j = l;
++m;
}
goto L70;
/* Begin again on another portion of the unsorted array */
L60:
--m;
if (m == 0) return 0;
i = il[m - 1];
j = iu[m - 1];
L70:
if (j - i > 0) goto L30;
if (i == 0) goto L20;
i -= s;
L80:
i += s;
if (i == j) goto L60;
t = x[i + s];
if (!cgt(x[i], t)) goto L80;
k = i;
L90:
x[k + s] = x[k];
k -= s;
if (clt(t, x[k])) goto L90;
x[k + s] = t;
goto L80;
}
/* assume mx is not a section and not complex */
int sort1d (nl_Matrix *mx) {
int i, j, k, l, m, ij;
int il[SORTDIM], iu[SORTDIM];
int n = mx->size;
int s = mx->stride;
lua_Number r, t, tt;
lua_Number *x = mx->data;
if (n < 1) return 0;
m = 1;
i = 0;
j = (n - 1) * s;
r = .375;
L20:
if (i == j) goto L60;
if (r <= .5898437)
r += .0390625;
else
r += -.21875;
L30:
k = i;
/* Select a central element of the array and save it in location T */
ij = i + ((int) ((j - i) / s * r)) * s;
t = x[ij];
/* If first element of array is greater than T, interchange with T */
if (x[i] > t) {
x[ij] = x[i]; x[i] = t; t = x[ij];
}
l = j;
/* If last element of array is less than than T, interchange with T */
if (x[j] < t) {
x[ij] = x[j]; x[j] = t; t = x[ij];
/* If first element of array is greater than T, interchange with T */
if (x[i] > t) {
x[ij] = x[i]; x[i] = t; t = x[ij];
}
}
/* Find an element in the second half of the array which is smaller than T */
L40:
l -= s;
if (x[l] > t) goto L40;
/* Find an element in the first half of the array which is greater than T */
L50:
k += s;
if (x[k] < t) goto L50;
/* Interchange these elements */
if (k <= l) {
tt = x[l]; x[l] = x[k]; x[k] = tt;
goto L40;
}
/* Save upper and lower subscripts of the array yet to be sorted */
if (l - i > j - k) {
il[m - 1] = i;
iu[m - 1] = l;
i = k;
++m;
}
else {
il[m - 1] = k;
iu[m - 1] = j;
j = l;
++m;
}
goto L70;
/* Begin again on another portion of the unsorted array */
L60:
--m;
if (m == 0) return 0;
i = il[m - 1];
j = iu[m - 1];
L70:
if (j - i > 0) goto L30;
if (i == 0) goto L20;
i -= s;
L80:
i += s;
if (i == j) goto L60;
t = x[i + s];
if (x[i] <= t) goto L80;
k = i;
L90:
x[k + s] = x[k];
k -= s;
if (t < x[k]) goto L90;
x[k + s] = t;
goto L80;
}
/* x and y are size-consistent, y is simple vector */
int sort2c (nl_Matrix *mx, nl_Matrix *my) {
int i, j, k, l, m, ij;
int ix, jx, kx, lx, ijx;
int il[SORTDIM], iu[SORTDIM];
int n = mx->size;
int s = mx->stride;
lua_Number r, ty, tty;
nl_Complex t, tt;
nl_Complex *x = (nl_Complex *) mx->data;
lua_Number *y = my->data;
if (n < 1) return 0;
m = 1;
i = 0; ix = 0;
j = n - 1; jx = j * s;
r = .375;
L110:
if (i == j) goto L150;
if (r <= .5898437)
r += .0390625;
else
r += -.21875;
L120:
k = i; kx = ix;
/* Select a central element of the array and save it in location T */
ij = i + (int) ((j - i) * r); ijx = ij * s;
t = x[ijx];
ty = y[ij];
/* If first element of array is greater than T, interchange with T */
if (cgt(x[ix], t)) {
x[ijx] = x[ix]; x[ix] = t; t = x[ijx];
y[ij] = y[i]; y[i] = ty; ty = y[ij];
}
l = j; lx = jx;
/* If last element of array is less than T, interchange with T */
if (clt(x[jx], t)) {
x[ijx] = x[jx]; x[jx] = t; t = x[ijx];
y[ij] = y[j]; y[j] = ty; ty = y[ij];
/* If first element of array is greater than T, interchange with T */
if (cgt(x[ix], t)) {
x[ijx] = x[ix]; x[ix] = t; t = x[ijx];
y[ij] = y[i]; y[i] = ty; ty = y[ij];
}
}
/* Find an element in the second half of the array which is smaller than T */
L130:
--l; lx -= s;
if (cgt(x[lx], t)) goto L130;
/* Find an element in the first half of the array which is greater than T */
L140:
++k; kx += s;
if (clt(x[kx], t)) goto L140;
/* Interchange these elements */
if (k <= l) {
tt = x[lx]; x[lx] = x[kx]; x[kx] = tt;
tty = y[l]; y[l] = y[k]; y[k] = tty;
goto L130;
}
/* Save upper and lower subscripts of the array yet to be sorted */
if (l - i > j - k) {
il[m - 1] = i;
iu[m - 1] = l;
i = k; ix = kx;
++m;
}
else {
il[m - 1] = k;
iu[m - 1] = j;
j = l; jx = lx;
++m;
}
goto L160;
/* Begin again on another portion of the unsorted array */
L150:
--m;
if (m == 0) return 0;
i = il[m - 1]; ix = i * s;
j = iu[m - 1]; jx = j * s;
L160:
if (j - i > 0) goto L120;
if (i == 0) goto L110;
--i; ix -= s;
L170:
++i; ix += s;
if (i == j) goto L150;
t = x[ix + s];
ty = y[i + 1];
if (!cgt(x[ix], t)) goto L170;
k = i; kx = ix;
L180:
x[kx + s] = x[kx];
y[k + 1] = y[k];
--k; kx -= s;
if (clt(t, x[kx])) goto L180;
x[kx + s] = t;
y[k + 1] = ty;
goto L170;
}
/* x and y are size-consistent, y is simple vector */
int sort2d (nl_Matrix *mx, nl_Matrix *my) {
int i, j, k, l, m, ij;
int ix, jx, kx, lx, ijx;
int il[SORTDIM], iu[SORTDIM];
int n = mx->size;
int s = mx->stride;
lua_Number r, t, tt, ty, tty;
lua_Number *x = mx->data;
lua_Number *y = my->data;
if (n < 1) return 0;
m = 1;
i = 0; ix = 0;
j = n - 1; jx = j * s;
r = .375;
L110:
if (i == j) goto L150;
if (r <= .5898437)
r += .0390625;
else
r += -.21875;
L120:
k = i; kx = ix;
/* Select a central element of the array and save it in location T */
ij = i + (int) ((j - i) * r); ijx = ij * s;
t = x[ijx];
ty = y[ij];
/* If first element of array is greater than T, interchange with T */
if (x[ix] > t) {
x[ijx] = x[ix]; x[ix] = t; t = x[ijx];
y[ij] = y[i]; y[i] = ty; ty = y[ij];
}
l = j; lx = jx;
/* If last element of array is less than T, interchange with T */
if (x[jx] < t) {
x[ijx] = x[jx]; x[jx] = t; t = x[ijx];
y[ij] = y[j]; y[j] = ty; ty = y[ij];
/* If first element of array is greater than T, interchange with T */
if (x[ix] > t) {
x[ijx] = x[ix]; x[ix] = t; t = x[ijx];
y[ij] = y[i]; y[i] = ty; ty = y[ij];
}
}
/* Find an element in the second half of the array which is smaller than T */
L130:
--l; lx -= s;
if (x[lx] > t) goto L130;
/* Find an element in the first half of the array which is greater than T */
L140:
++k; kx += s;
if (x[kx] < t) goto L140;
/* Interchange these elements */
if (k <= l) {
tt = x[lx]; x[lx] = x[kx]; x[kx] = tt;
tty = y[l]; y[l] = y[k]; y[k] = tty;
goto L130;
}
/* Save upper and lower subscripts of the array yet to be sorted */
if (l - i > j - k) {
il[m - 1] = i;
iu[m - 1] = l;
i = k; ix = kx;
++m;
}
else {
il[m - 1] = k;
iu[m - 1] = j;
j = l; jx = lx;
++m;
}
goto L160;
/* Begin again on another portion of the unsorted array */
L150:
--m;
if (m == 0) return 0;
i = il[m - 1]; ix = i * s;
j = iu[m - 1]; jx = j * s;
L160:
if (j - i > 0) goto L120;
if (i == 0) goto L110;
--i; ix -= s;
L170:
++i; ix += s;
if (i == j) goto L150;
t = x[ix + s];
ty = y[i + 1];
if (x[ix] <= t) goto L170;
k = i; kx = ix;
L180:
x[kx + s] = x[kx];
y[k + 1] = y[k];
--k; kx -= s;
if (t < x[kx]) goto L180;
x[kx + s] = t;
y[k + 1] = ty;
goto L170;
}