-
Notifications
You must be signed in to change notification settings - Fork 88
/
sort.h
1820 lines (1538 loc) · 43.5 KB
/
sort.h
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
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* Copyright (c) 2010-2024 Christopher Swenson. */
/* Copyright (c) 2012 Vojtech Fried. */
/* Copyright (c) 2012 Google Inc. All Rights Reserved. */
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <stdint.h>
#ifndef SORT_NAME
#error "Must declare SORT_NAME"
#endif
#ifndef SORT_TYPE
#error "Must declare SORT_TYPE"
#endif
#ifndef SORT_CMP
#define SORT_CMP(x, y) ((x) < (y) ? -1 : ((y) < (x) ? 1 : 0))
#endif
#ifndef SORT_DEF
#define SORT_DEF
#else
#ifdef __GNUC__
#define SORT_GCC_PUSH
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wunused-function"
#endif
#endif
#ifdef __cplusplus
#ifndef SORT_SAFE_CPY
#define SORT_SAFE_CPY 0
#endif
#else
#undef SORT_SAFE_CPY
#define SORT_SAFE_CPY 0
#endif
#ifndef TIM_SORT_STACK_SIZE
#define TIM_SORT_STACK_SIZE 128
#endif
#ifndef SORT_SWAP
#define SORT_SWAP(x,y) {SORT_TYPE _sort_swap_temp = (x); (x) = (y); (y) = _sort_swap_temp;}
#endif
/* Common, type-agnostic functions and constants that we don't want to declare twice. */
#ifndef SORT_COMMON_H
#define SORT_COMMON_H
#ifndef MAX
#define MAX(x,y) (((x) > (y) ? (x) : (y)))
#endif
#ifndef MIN
#define MIN(x,y) (((x) < (y) ? (x) : (y)))
#endif
static int compute_minrun(const uint64_t);
/* From http://oeis.org/classic/A102549 */
static const uint64_t shell_gaps[48] = {1, 4, 10, 23, 57, 132, 301, 701, 1750, 4376, 10941, 27353, 68383, 170958, 427396, 1068491, 2671228, 6678071, 16695178, 41737946, 104344866, 260862166, 652155416, 1630388541, 4075971353LL, 10189928383LL, 25474820958LL, 63687052396LL, 159217630991LL, 398044077478LL, 995110193696LL, 2487775484241LL, 6219438710603LL, 15548596776508LL, 38871491941271LL, 97178729853178LL, 242946824632946LL, 607367061582366LL, 1518417653955916LL, 3796044134889791LL, 9490110337224478LL, 23725275843061196LL, 59313189607652991LL, 148282974019132478LL, 370707435047831196LL, 926768587619577991LL, 2316921469048944978LL, 5792303672622362446LL};
#ifndef CLZ
/* clang-only */
#ifndef __has_builtin
#define __has_builtin(x) 0
#endif
#if __has_builtin(__builtin_clzll) || (defined(__GNUC__) && ((__GNUC__ == 3 && __GNUC_MINOR__ >= 4) || (__GNUC__ > 3)))
#define CLZ __builtin_clzll
#else
static int clzll(uint64_t);
/* adapted from Hacker's Delight */
static int clzll(uint64_t x) {
int n;
if (x == 0) {
return 64;
}
n = 0;
if (x <= 0x00000000FFFFFFFFL) {
n = n + 32;
x = x << 32;
}
if (x <= 0x0000FFFFFFFFFFFFL) {
n = n + 16;
x = x << 16;
}
if (x <= 0x00FFFFFFFFFFFFFFL) {
n = n + 8;
x = x << 8;
}
if (x <= 0x0FFFFFFFFFFFFFFFL) {
n = n + 4;
x = x << 4;
}
if (x <= 0x3FFFFFFFFFFFFFFFL) {
n = n + 2;
x = x << 2;
}
if (x <= 0x7FFFFFFFFFFFFFFFL) {
n = n + 1;
}
return n;
}
#define CLZ clzll
#endif
#endif
static __inline int compute_minrun(const uint64_t size) {
const int top_bit = 64 - CLZ(size);
const int shift = MAX(top_bit, 6) - 6;
const int minrun = (int)(size >> shift);
const uint64_t mask = (1ULL << shift) - 1;
if (mask & size) {
return minrun + 1;
}
return minrun;
}
static __inline size_t rbnd(size_t len) {
int k;
if (len < 16) {
return 2;
}
k = 62 - CLZ(len);
return 1ULL << ((2 * k) / 3);
}
#endif /* SORT_COMMON_H */
#define SORT_CONCAT(x, y) x ## _ ## y
#define SORT_MAKE_STR1(x, y) SORT_CONCAT(x,y)
#define SORT_MAKE_STR(x) SORT_MAKE_STR1(SORT_NAME,x)
#ifndef SMALL_SORT_BND
#define SMALL_SORT_BND 16
#endif
#ifndef SMALL_SORT
#define SMALL_SORT BITONIC_SORT
/*#define SMALL_SORT BINARY_INSERTION_SORT*/
#endif
#ifndef SMALL_STABLE_SORT
#define SMALL_STABLE_SORT BINARY_INSERTION_SORT
#endif
#define SORT_TYPE_CPY SORT_MAKE_STR(sort_type_cpy)
#define SORT_TYPE_MOVE SORT_MAKE_STR(sort_type_move)
#define SORT_NEW_BUFFER SORT_MAKE_STR(sort_new_buffer)
#define SORT_DELETE_BUFFER SORT_MAKE_STR(sort_delete_buffer)
#define BITONIC_SORT SORT_MAKE_STR(bitonic_sort)
#define BINARY_INSERTION_FIND SORT_MAKE_STR(binary_insertion_find)
#define BINARY_INSERTION_SORT_START SORT_MAKE_STR(binary_insertion_sort_start)
#define BINARY_INSERTION_SORT SORT_MAKE_STR(binary_insertion_sort)
#define REVERSE_ELEMENTS SORT_MAKE_STR(reverse_elements)
#define COUNT_RUN SORT_MAKE_STR(count_run)
#define CHECK_INVARIANT SORT_MAKE_STR(check_invariant)
#define TIM_SORT SORT_MAKE_STR(tim_sort)
#define TIM_SORT_RESIZE SORT_MAKE_STR(tim_sort_resize)
#define TIM_SORT_MERGE SORT_MAKE_STR(tim_sort_merge)
#define TIM_SORT_COLLAPSE SORT_MAKE_STR(tim_sort_collapse)
#define HEAP_SORT SORT_MAKE_STR(heap_sort)
#define MEDIAN SORT_MAKE_STR(median)
#define QUICK_SORT SORT_MAKE_STR(quick_sort)
#define MERGE_SORT SORT_MAKE_STR(merge_sort)
#define MERGE_SORT_RECURSIVE SORT_MAKE_STR(merge_sort_recursive)
#define MERGE_SORT_IN_PLACE SORT_MAKE_STR(merge_sort_in_place)
#define MERGE_SORT_IN_PLACE_RMERGE SORT_MAKE_STR(merge_sort_in_place_rmerge)
#define MERGE_SORT_IN_PLACE_BACKMERGE SORT_MAKE_STR(merge_sort_in_place_backmerge)
#define MERGE_SORT_IN_PLACE_FRONTMERGE SORT_MAKE_STR(merge_sort_in_place_frontmerge)
#define MERGE_SORT_IN_PLACE_ASWAP SORT_MAKE_STR(merge_sort_in_place_aswap)
#define SHELL_SORT SORT_MAKE_STR(shell_sort)
#define QUICK_SORT_PARTITION SORT_MAKE_STR(quick_sort_partition)
#define QUICK_SORT_RECURSIVE SORT_MAKE_STR(quick_sort_recursive)
#define HEAP_SIFT_DOWN SORT_MAKE_STR(heap_sift_down)
#define HEAPIFY SORT_MAKE_STR(heapify)
#define TIM_SORT_RUN_T SORT_MAKE_STR(tim_sort_run_t)
#define TEMP_STORAGE_T SORT_MAKE_STR(temp_storage_t)
#define PUSH_NEXT SORT_MAKE_STR(push_next)
#ifndef MAX
#define MAX(x,y) (((x) > (y) ? (x) : (y)))
#endif
#ifndef MIN
#define MIN(x,y) (((x) < (y) ? (x) : (y)))
#endif
#ifndef SORT_CSWAP
#define SORT_CSWAP(x, y) { if(SORT_CMP((x),(y)) > 0) {SORT_SWAP((x),(y));}}
#endif
typedef struct {
size_t start;
size_t length;
} TIM_SORT_RUN_T;
SORT_DEF void SHELL_SORT(SORT_TYPE *dst, const size_t size);
SORT_DEF void BINARY_INSERTION_SORT(SORT_TYPE *dst, const size_t size);
SORT_DEF void HEAP_SORT(SORT_TYPE *dst, const size_t size);
SORT_DEF void QUICK_SORT(SORT_TYPE *dst, const size_t size);
SORT_DEF void MERGE_SORT(SORT_TYPE *dst, const size_t size);
SORT_DEF void MERGE_SORT_IN_PLACE(SORT_TYPE *dst, const size_t size);
SORT_DEF void TIM_SORT(SORT_TYPE *dst, const size_t size);
SORT_DEF void BITONIC_SORT(SORT_TYPE *dst, const size_t size);
/* The full implementation of a bitonic sort is not here. Since we only want to use
sorting networks for small length lists we create optimal sorting networks for
lists of length <= 16 and call out to BINARY_INSERTION_SORT for anything larger
than 16.
Optimal sorting networks for small length lists.
Taken from https://pages.ripco.net/~jgamble/nw.html */
#define BITONIC_SORT_2 SORT_MAKE_STR(bitonic_sort_2)
static __inline void BITONIC_SORT_2(SORT_TYPE *dst) {
SORT_CSWAP(dst[0], dst[1]);
}
#define BITONIC_SORT_3 SORT_MAKE_STR(bitonic_sort_3)
static __inline void BITONIC_SORT_3(SORT_TYPE *dst) {
SORT_CSWAP(dst[1], dst[2]);
SORT_CSWAP(dst[0], dst[2]);
SORT_CSWAP(dst[0], dst[1]);
}
#define BITONIC_SORT_4 SORT_MAKE_STR(bitonic_sort_4)
static __inline void BITONIC_SORT_4(SORT_TYPE *dst) {
SORT_CSWAP(dst[0], dst[1]);
SORT_CSWAP(dst[2], dst[3]);
SORT_CSWAP(dst[0], dst[2]);
SORT_CSWAP(dst[1], dst[3]);
SORT_CSWAP(dst[1], dst[2]);
}
#define BITONIC_SORT_5 SORT_MAKE_STR(bitonic_sort_5)
static __inline void BITONIC_SORT_5(SORT_TYPE *dst) {
SORT_CSWAP(dst[0], dst[1]);
SORT_CSWAP(dst[3], dst[4]);
SORT_CSWAP(dst[2], dst[4]);
SORT_CSWAP(dst[2], dst[3]);
SORT_CSWAP(dst[1], dst[4]);
SORT_CSWAP(dst[0], dst[3]);
SORT_CSWAP(dst[0], dst[2]);
SORT_CSWAP(dst[1], dst[3]);
SORT_CSWAP(dst[1], dst[2]);
}
#define BITONIC_SORT_6 SORT_MAKE_STR(bitonic_sort_6)
static __inline void BITONIC_SORT_6(SORT_TYPE *dst) {
SORT_CSWAP(dst[1], dst[2]);
SORT_CSWAP(dst[4], dst[5]);
SORT_CSWAP(dst[0], dst[2]);
SORT_CSWAP(dst[3], dst[5]);
SORT_CSWAP(dst[0], dst[1]);
SORT_CSWAP(dst[3], dst[4]);
SORT_CSWAP(dst[2], dst[5]);
SORT_CSWAP(dst[0], dst[3]);
SORT_CSWAP(dst[1], dst[4]);
SORT_CSWAP(dst[2], dst[4]);
SORT_CSWAP(dst[1], dst[3]);
SORT_CSWAP(dst[2], dst[3]);
}
#define BITONIC_SORT_7 SORT_MAKE_STR(bitonic_sort_7)
static __inline void BITONIC_SORT_7(SORT_TYPE *dst) {
SORT_CSWAP(dst[1], dst[2]);
SORT_CSWAP(dst[3], dst[4]);
SORT_CSWAP(dst[5], dst[6]);
SORT_CSWAP(dst[0], dst[2]);
SORT_CSWAP(dst[3], dst[5]);
SORT_CSWAP(dst[4], dst[6]);
SORT_CSWAP(dst[0], dst[1]);
SORT_CSWAP(dst[4], dst[5]);
SORT_CSWAP(dst[2], dst[6]);
SORT_CSWAP(dst[0], dst[4]);
SORT_CSWAP(dst[1], dst[5]);
SORT_CSWAP(dst[0], dst[3]);
SORT_CSWAP(dst[2], dst[5]);
SORT_CSWAP(dst[1], dst[3]);
SORT_CSWAP(dst[2], dst[4]);
SORT_CSWAP(dst[2], dst[3]);
}
#define BITONIC_SORT_8 SORT_MAKE_STR(bitonic_sort_8)
static __inline void BITONIC_SORT_8(SORT_TYPE *dst) {
SORT_CSWAP(dst[0], dst[1]);
SORT_CSWAP(dst[2], dst[3]);
SORT_CSWAP(dst[4], dst[5]);
SORT_CSWAP(dst[6], dst[7]);
SORT_CSWAP(dst[0], dst[2]);
SORT_CSWAP(dst[1], dst[3]);
SORT_CSWAP(dst[4], dst[6]);
SORT_CSWAP(dst[5], dst[7]);
SORT_CSWAP(dst[1], dst[2]);
SORT_CSWAP(dst[5], dst[6]);
SORT_CSWAP(dst[0], dst[4]);
SORT_CSWAP(dst[3], dst[7]);
SORT_CSWAP(dst[1], dst[5]);
SORT_CSWAP(dst[2], dst[6]);
SORT_CSWAP(dst[1], dst[4]);
SORT_CSWAP(dst[3], dst[6]);
SORT_CSWAP(dst[2], dst[4]);
SORT_CSWAP(dst[3], dst[5]);
SORT_CSWAP(dst[3], dst[4]);
}
#define BITONIC_SORT_9 SORT_MAKE_STR(bitonic_sort_9)
static __inline void BITONIC_SORT_9(SORT_TYPE *dst) {
SORT_CSWAP(dst[0], dst[1]);
SORT_CSWAP(dst[3], dst[4]);
SORT_CSWAP(dst[6], dst[7]);
SORT_CSWAP(dst[1], dst[2]);
SORT_CSWAP(dst[4], dst[5]);
SORT_CSWAP(dst[7], dst[8]);
SORT_CSWAP(dst[0], dst[1]);
SORT_CSWAP(dst[3], dst[4]);
SORT_CSWAP(dst[6], dst[7]);
SORT_CSWAP(dst[2], dst[5]);
SORT_CSWAP(dst[0], dst[3]);
SORT_CSWAP(dst[1], dst[4]);
SORT_CSWAP(dst[5], dst[8]);
SORT_CSWAP(dst[3], dst[6]);
SORT_CSWAP(dst[4], dst[7]);
SORT_CSWAP(dst[2], dst[5]);
SORT_CSWAP(dst[0], dst[3]);
SORT_CSWAP(dst[1], dst[4]);
SORT_CSWAP(dst[5], dst[7]);
SORT_CSWAP(dst[2], dst[6]);
SORT_CSWAP(dst[1], dst[3]);
SORT_CSWAP(dst[4], dst[6]);
SORT_CSWAP(dst[2], dst[4]);
SORT_CSWAP(dst[5], dst[6]);
SORT_CSWAP(dst[2], dst[3]);
}
#define BITONIC_SORT_10 SORT_MAKE_STR(bitonic_sort_10)
static __inline void BITONIC_SORT_10(SORT_TYPE *dst) {
SORT_CSWAP(dst[4], dst[9]);
SORT_CSWAP(dst[3], dst[8]);
SORT_CSWAP(dst[2], dst[7]);
SORT_CSWAP(dst[1], dst[6]);
SORT_CSWAP(dst[0], dst[5]);
SORT_CSWAP(dst[1], dst[4]);
SORT_CSWAP(dst[6], dst[9]);
SORT_CSWAP(dst[0], dst[3]);
SORT_CSWAP(dst[5], dst[8]);
SORT_CSWAP(dst[0], dst[2]);
SORT_CSWAP(dst[3], dst[6]);
SORT_CSWAP(dst[7], dst[9]);
SORT_CSWAP(dst[0], dst[1]);
SORT_CSWAP(dst[2], dst[4]);
SORT_CSWAP(dst[5], dst[7]);
SORT_CSWAP(dst[8], dst[9]);
SORT_CSWAP(dst[1], dst[2]);
SORT_CSWAP(dst[4], dst[6]);
SORT_CSWAP(dst[7], dst[8]);
SORT_CSWAP(dst[3], dst[5]);
SORT_CSWAP(dst[2], dst[5]);
SORT_CSWAP(dst[6], dst[8]);
SORT_CSWAP(dst[1], dst[3]);
SORT_CSWAP(dst[4], dst[7]);
SORT_CSWAP(dst[2], dst[3]);
SORT_CSWAP(dst[6], dst[7]);
SORT_CSWAP(dst[3], dst[4]);
SORT_CSWAP(dst[5], dst[6]);
SORT_CSWAP(dst[4], dst[5]);
}
#define BITONIC_SORT_11 SORT_MAKE_STR(bitonic_sort_11)
static __inline void BITONIC_SORT_11(SORT_TYPE *dst) {
SORT_CSWAP(dst[0], dst[1]);
SORT_CSWAP(dst[2], dst[3]);
SORT_CSWAP(dst[4], dst[5]);
SORT_CSWAP(dst[6], dst[7]);
SORT_CSWAP(dst[8], dst[9]);
SORT_CSWAP(dst[1], dst[3]);
SORT_CSWAP(dst[5], dst[7]);
SORT_CSWAP(dst[0], dst[2]);
SORT_CSWAP(dst[4], dst[6]);
SORT_CSWAP(dst[8], dst[10]);
SORT_CSWAP(dst[1], dst[2]);
SORT_CSWAP(dst[5], dst[6]);
SORT_CSWAP(dst[9], dst[10]);
SORT_CSWAP(dst[0], dst[4]);
SORT_CSWAP(dst[3], dst[7]);
SORT_CSWAP(dst[1], dst[5]);
SORT_CSWAP(dst[6], dst[10]);
SORT_CSWAP(dst[4], dst[8]);
SORT_CSWAP(dst[5], dst[9]);
SORT_CSWAP(dst[2], dst[6]);
SORT_CSWAP(dst[0], dst[4]);
SORT_CSWAP(dst[3], dst[8]);
SORT_CSWAP(dst[1], dst[5]);
SORT_CSWAP(dst[6], dst[10]);
SORT_CSWAP(dst[2], dst[3]);
SORT_CSWAP(dst[8], dst[9]);
SORT_CSWAP(dst[1], dst[4]);
SORT_CSWAP(dst[7], dst[10]);
SORT_CSWAP(dst[3], dst[5]);
SORT_CSWAP(dst[6], dst[8]);
SORT_CSWAP(dst[2], dst[4]);
SORT_CSWAP(dst[7], dst[9]);
SORT_CSWAP(dst[5], dst[6]);
SORT_CSWAP(dst[3], dst[4]);
SORT_CSWAP(dst[7], dst[8]);
}
#define BITONIC_SORT_12 SORT_MAKE_STR(bitonic_sort_12)
static __inline void BITONIC_SORT_12(SORT_TYPE *dst) {
SORT_CSWAP(dst[0], dst[1]);
SORT_CSWAP(dst[2], dst[3]);
SORT_CSWAP(dst[4], dst[5]);
SORT_CSWAP(dst[6], dst[7]);
SORT_CSWAP(dst[8], dst[9]);
SORT_CSWAP(dst[10], dst[11]);
SORT_CSWAP(dst[1], dst[3]);
SORT_CSWAP(dst[5], dst[7]);
SORT_CSWAP(dst[9], dst[11]);
SORT_CSWAP(dst[0], dst[2]);
SORT_CSWAP(dst[4], dst[6]);
SORT_CSWAP(dst[8], dst[10]);
SORT_CSWAP(dst[1], dst[2]);
SORT_CSWAP(dst[5], dst[6]);
SORT_CSWAP(dst[9], dst[10]);
SORT_CSWAP(dst[0], dst[4]);
SORT_CSWAP(dst[7], dst[11]);
SORT_CSWAP(dst[1], dst[5]);
SORT_CSWAP(dst[6], dst[10]);
SORT_CSWAP(dst[3], dst[7]);
SORT_CSWAP(dst[4], dst[8]);
SORT_CSWAP(dst[5], dst[9]);
SORT_CSWAP(dst[2], dst[6]);
SORT_CSWAP(dst[0], dst[4]);
SORT_CSWAP(dst[7], dst[11]);
SORT_CSWAP(dst[3], dst[8]);
SORT_CSWAP(dst[1], dst[5]);
SORT_CSWAP(dst[6], dst[10]);
SORT_CSWAP(dst[2], dst[3]);
SORT_CSWAP(dst[8], dst[9]);
SORT_CSWAP(dst[1], dst[4]);
SORT_CSWAP(dst[7], dst[10]);
SORT_CSWAP(dst[3], dst[5]);
SORT_CSWAP(dst[6], dst[8]);
SORT_CSWAP(dst[2], dst[4]);
SORT_CSWAP(dst[7], dst[9]);
SORT_CSWAP(dst[5], dst[6]);
SORT_CSWAP(dst[3], dst[4]);
SORT_CSWAP(dst[7], dst[8]);
}
#define BITONIC_SORT_13 SORT_MAKE_STR(bitonic_sort_13)
static __inline void BITONIC_SORT_13(SORT_TYPE *dst) {
SORT_CSWAP(dst[1], dst[7]);
SORT_CSWAP(dst[9], dst[11]);
SORT_CSWAP(dst[3], dst[4]);
SORT_CSWAP(dst[5], dst[8]);
SORT_CSWAP(dst[0], dst[12]);
SORT_CSWAP(dst[2], dst[6]);
SORT_CSWAP(dst[0], dst[1]);
SORT_CSWAP(dst[2], dst[3]);
SORT_CSWAP(dst[4], dst[6]);
SORT_CSWAP(dst[8], dst[11]);
SORT_CSWAP(dst[7], dst[12]);
SORT_CSWAP(dst[5], dst[9]);
SORT_CSWAP(dst[0], dst[2]);
SORT_CSWAP(dst[3], dst[7]);
SORT_CSWAP(dst[10], dst[11]);
SORT_CSWAP(dst[1], dst[4]);
SORT_CSWAP(dst[6], dst[12]);
SORT_CSWAP(dst[7], dst[8]);
SORT_CSWAP(dst[11], dst[12]);
SORT_CSWAP(dst[4], dst[9]);
SORT_CSWAP(dst[6], dst[10]);
SORT_CSWAP(dst[3], dst[4]);
SORT_CSWAP(dst[5], dst[6]);
SORT_CSWAP(dst[8], dst[9]);
SORT_CSWAP(dst[10], dst[11]);
SORT_CSWAP(dst[1], dst[7]);
SORT_CSWAP(dst[2], dst[6]);
SORT_CSWAP(dst[9], dst[11]);
SORT_CSWAP(dst[1], dst[3]);
SORT_CSWAP(dst[4], dst[7]);
SORT_CSWAP(dst[8], dst[10]);
SORT_CSWAP(dst[0], dst[5]);
SORT_CSWAP(dst[2], dst[5]);
SORT_CSWAP(dst[6], dst[8]);
SORT_CSWAP(dst[9], dst[10]);
SORT_CSWAP(dst[1], dst[2]);
SORT_CSWAP(dst[3], dst[5]);
SORT_CSWAP(dst[7], dst[8]);
SORT_CSWAP(dst[4], dst[6]);
SORT_CSWAP(dst[2], dst[3]);
SORT_CSWAP(dst[4], dst[5]);
SORT_CSWAP(dst[6], dst[7]);
SORT_CSWAP(dst[8], dst[9]);
SORT_CSWAP(dst[3], dst[4]);
SORT_CSWAP(dst[5], dst[6]);
}
#define BITONIC_SORT_14 SORT_MAKE_STR(bitonic_sort_14)
static __inline void BITONIC_SORT_14(SORT_TYPE *dst) {
SORT_CSWAP(dst[0], dst[1]);
SORT_CSWAP(dst[2], dst[3]);
SORT_CSWAP(dst[4], dst[5]);
SORT_CSWAP(dst[6], dst[7]);
SORT_CSWAP(dst[8], dst[9]);
SORT_CSWAP(dst[10], dst[11]);
SORT_CSWAP(dst[12], dst[13]);
SORT_CSWAP(dst[0], dst[2]);
SORT_CSWAP(dst[4], dst[6]);
SORT_CSWAP(dst[8], dst[10]);
SORT_CSWAP(dst[1], dst[3]);
SORT_CSWAP(dst[5], dst[7]);
SORT_CSWAP(dst[9], dst[11]);
SORT_CSWAP(dst[0], dst[4]);
SORT_CSWAP(dst[8], dst[12]);
SORT_CSWAP(dst[1], dst[5]);
SORT_CSWAP(dst[9], dst[13]);
SORT_CSWAP(dst[2], dst[6]);
SORT_CSWAP(dst[3], dst[7]);
SORT_CSWAP(dst[0], dst[8]);
SORT_CSWAP(dst[1], dst[9]);
SORT_CSWAP(dst[2], dst[10]);
SORT_CSWAP(dst[3], dst[11]);
SORT_CSWAP(dst[4], dst[12]);
SORT_CSWAP(dst[5], dst[13]);
SORT_CSWAP(dst[5], dst[10]);
SORT_CSWAP(dst[6], dst[9]);
SORT_CSWAP(dst[3], dst[12]);
SORT_CSWAP(dst[7], dst[11]);
SORT_CSWAP(dst[1], dst[2]);
SORT_CSWAP(dst[4], dst[8]);
SORT_CSWAP(dst[1], dst[4]);
SORT_CSWAP(dst[7], dst[13]);
SORT_CSWAP(dst[2], dst[8]);
SORT_CSWAP(dst[5], dst[6]);
SORT_CSWAP(dst[9], dst[10]);
SORT_CSWAP(dst[2], dst[4]);
SORT_CSWAP(dst[11], dst[13]);
SORT_CSWAP(dst[3], dst[8]);
SORT_CSWAP(dst[7], dst[12]);
SORT_CSWAP(dst[6], dst[8]);
SORT_CSWAP(dst[10], dst[12]);
SORT_CSWAP(dst[3], dst[5]);
SORT_CSWAP(dst[7], dst[9]);
SORT_CSWAP(dst[3], dst[4]);
SORT_CSWAP(dst[5], dst[6]);
SORT_CSWAP(dst[7], dst[8]);
SORT_CSWAP(dst[9], dst[10]);
SORT_CSWAP(dst[11], dst[12]);
SORT_CSWAP(dst[6], dst[7]);
SORT_CSWAP(dst[8], dst[9]);
}
#define BITONIC_SORT_15 SORT_MAKE_STR(bitonic_sort_15)
static __inline void BITONIC_SORT_15(SORT_TYPE *dst) {
SORT_CSWAP(dst[0], dst[1]);
SORT_CSWAP(dst[2], dst[3]);
SORT_CSWAP(dst[4], dst[5]);
SORT_CSWAP(dst[6], dst[7]);
SORT_CSWAP(dst[8], dst[9]);
SORT_CSWAP(dst[10], dst[11]);
SORT_CSWAP(dst[12], dst[13]);
SORT_CSWAP(dst[0], dst[2]);
SORT_CSWAP(dst[4], dst[6]);
SORT_CSWAP(dst[8], dst[10]);
SORT_CSWAP(dst[12], dst[14]);
SORT_CSWAP(dst[1], dst[3]);
SORT_CSWAP(dst[5], dst[7]);
SORT_CSWAP(dst[9], dst[11]);
SORT_CSWAP(dst[0], dst[4]);
SORT_CSWAP(dst[8], dst[12]);
SORT_CSWAP(dst[1], dst[5]);
SORT_CSWAP(dst[9], dst[13]);
SORT_CSWAP(dst[2], dst[6]);
SORT_CSWAP(dst[10], dst[14]);
SORT_CSWAP(dst[3], dst[7]);
SORT_CSWAP(dst[0], dst[8]);
SORT_CSWAP(dst[1], dst[9]);
SORT_CSWAP(dst[2], dst[10]);
SORT_CSWAP(dst[3], dst[11]);
SORT_CSWAP(dst[4], dst[12]);
SORT_CSWAP(dst[5], dst[13]);
SORT_CSWAP(dst[6], dst[14]);
SORT_CSWAP(dst[5], dst[10]);
SORT_CSWAP(dst[6], dst[9]);
SORT_CSWAP(dst[3], dst[12]);
SORT_CSWAP(dst[13], dst[14]);
SORT_CSWAP(dst[7], dst[11]);
SORT_CSWAP(dst[1], dst[2]);
SORT_CSWAP(dst[4], dst[8]);
SORT_CSWAP(dst[1], dst[4]);
SORT_CSWAP(dst[7], dst[13]);
SORT_CSWAP(dst[2], dst[8]);
SORT_CSWAP(dst[11], dst[14]);
SORT_CSWAP(dst[5], dst[6]);
SORT_CSWAP(dst[9], dst[10]);
SORT_CSWAP(dst[2], dst[4]);
SORT_CSWAP(dst[11], dst[13]);
SORT_CSWAP(dst[3], dst[8]);
SORT_CSWAP(dst[7], dst[12]);
SORT_CSWAP(dst[6], dst[8]);
SORT_CSWAP(dst[10], dst[12]);
SORT_CSWAP(dst[3], dst[5]);
SORT_CSWAP(dst[7], dst[9]);
SORT_CSWAP(dst[3], dst[4]);
SORT_CSWAP(dst[5], dst[6]);
SORT_CSWAP(dst[7], dst[8]);
SORT_CSWAP(dst[9], dst[10]);
SORT_CSWAP(dst[11], dst[12]);
SORT_CSWAP(dst[6], dst[7]);
SORT_CSWAP(dst[8], dst[9]);
}
#define BITONIC_SORT_16 SORT_MAKE_STR(bitonic_sort_16)
static __inline void BITONIC_SORT_16(SORT_TYPE *dst) {
SORT_CSWAP(dst[0], dst[1]);
SORT_CSWAP(dst[2], dst[3]);
SORT_CSWAP(dst[4], dst[5]);
SORT_CSWAP(dst[6], dst[7]);
SORT_CSWAP(dst[8], dst[9]);
SORT_CSWAP(dst[10], dst[11]);
SORT_CSWAP(dst[12], dst[13]);
SORT_CSWAP(dst[14], dst[15]);
SORT_CSWAP(dst[0], dst[2]);
SORT_CSWAP(dst[4], dst[6]);
SORT_CSWAP(dst[8], dst[10]);
SORT_CSWAP(dst[12], dst[14]);
SORT_CSWAP(dst[1], dst[3]);
SORT_CSWAP(dst[5], dst[7]);
SORT_CSWAP(dst[9], dst[11]);
SORT_CSWAP(dst[13], dst[15]);
SORT_CSWAP(dst[0], dst[4]);
SORT_CSWAP(dst[8], dst[12]);
SORT_CSWAP(dst[1], dst[5]);
SORT_CSWAP(dst[9], dst[13]);
SORT_CSWAP(dst[2], dst[6]);
SORT_CSWAP(dst[10], dst[14]);
SORT_CSWAP(dst[3], dst[7]);
SORT_CSWAP(dst[11], dst[15]);
SORT_CSWAP(dst[0], dst[8]);
SORT_CSWAP(dst[1], dst[9]);
SORT_CSWAP(dst[2], dst[10]);
SORT_CSWAP(dst[3], dst[11]);
SORT_CSWAP(dst[4], dst[12]);
SORT_CSWAP(dst[5], dst[13]);
SORT_CSWAP(dst[6], dst[14]);
SORT_CSWAP(dst[7], dst[15]);
SORT_CSWAP(dst[5], dst[10]);
SORT_CSWAP(dst[6], dst[9]);
SORT_CSWAP(dst[3], dst[12]);
SORT_CSWAP(dst[13], dst[14]);
SORT_CSWAP(dst[7], dst[11]);
SORT_CSWAP(dst[1], dst[2]);
SORT_CSWAP(dst[4], dst[8]);
SORT_CSWAP(dst[1], dst[4]);
SORT_CSWAP(dst[7], dst[13]);
SORT_CSWAP(dst[2], dst[8]);
SORT_CSWAP(dst[11], dst[14]);
SORT_CSWAP(dst[5], dst[6]);
SORT_CSWAP(dst[9], dst[10]);
SORT_CSWAP(dst[2], dst[4]);
SORT_CSWAP(dst[11], dst[13]);
SORT_CSWAP(dst[3], dst[8]);
SORT_CSWAP(dst[7], dst[12]);
SORT_CSWAP(dst[6], dst[8]);
SORT_CSWAP(dst[10], dst[12]);
SORT_CSWAP(dst[3], dst[5]);
SORT_CSWAP(dst[7], dst[9]);
SORT_CSWAP(dst[3], dst[4]);
SORT_CSWAP(dst[5], dst[6]);
SORT_CSWAP(dst[7], dst[8]);
SORT_CSWAP(dst[9], dst[10]);
SORT_CSWAP(dst[11], dst[12]);
SORT_CSWAP(dst[6], dst[7]);
SORT_CSWAP(dst[8], dst[9]);
}
SORT_DEF void BITONIC_SORT(SORT_TYPE *dst, const size_t size) {
switch (size) {
case 0:
case 1:
break;
case 2:
BITONIC_SORT_2(dst);
break;
case 3:
BITONIC_SORT_3(dst);
break;
case 4:
BITONIC_SORT_4(dst);
break;
case 5:
BITONIC_SORT_5(dst);
break;
case 6:
BITONIC_SORT_6(dst);
break;
case 7:
BITONIC_SORT_7(dst);
break;
case 8:
BITONIC_SORT_8(dst);
break;
case 9:
BITONIC_SORT_9(dst);
break;
case 10:
BITONIC_SORT_10(dst);
break;
case 11:
BITONIC_SORT_11(dst);
break;
case 12:
BITONIC_SORT_12(dst);
break;
case 13:
BITONIC_SORT_13(dst);
break;
case 14:
BITONIC_SORT_14(dst);
break;
case 15:
BITONIC_SORT_15(dst);
break;
case 16:
BITONIC_SORT_16(dst);
break;
default:
BINARY_INSERTION_SORT(dst, size);
}
}
#if SORT_SAFE_CPY
SORT_DEF void SORT_TYPE_CPY(SORT_TYPE *dst, SORT_TYPE *src, const size_t size) {
size_t i = 0;
for (; i < size; ++i) {
dst[i] = src[i];
}
}
SORT_DEF void SORT_TYPE_MOVE(SORT_TYPE *dst, SORT_TYPE *src, const size_t size) {
size_t i;
if (dst < src) {
SORT_TYPE_CPY(dst, src, size);
} else if (dst != src && size > 0) {
for (i = size - 1; i > 0; --i) {
dst[i] = src[i];
}
*dst = *src;
}
}
#else
#undef SORT_TYPE_CPY
#define SORT_TYPE_CPY(dst, src, size) memcpy((dst), (src), (size) * sizeof(SORT_TYPE))
#undef SORT_TYPE_MOVE
#define SORT_TYPE_MOVE(dst, src, size) memmove((dst), (src), (size) * sizeof(SORT_TYPE))
#endif
SORT_DEF SORT_TYPE* SORT_NEW_BUFFER(size_t size) {
#if SORT_SAFE_CPY
return new SORT_TYPE[size];
#else
return (SORT_TYPE*)malloc(size * sizeof(SORT_TYPE));
#endif
}
SORT_DEF void SORT_DELETE_BUFFER(SORT_TYPE* pointer) {
#if SORT_SAFE_CPY
delete[] pointer;
#else
free(pointer);
#endif
}
/* Shell sort implementation based on Wikipedia article
http://en.wikipedia.org/wiki/Shell_sort
*/
SORT_DEF void SHELL_SORT(SORT_TYPE *dst, const size_t size) {
/* don't bother sorting an array of size 0 or 1 */
/* TODO: binary search to find first gap? */
int inci = 47;
size_t inc = shell_gaps[inci];
size_t i;
if (size <= 1) {
return;
}
while (inc > (size >> 1)) {
inc = shell_gaps[--inci];
}
while (1) {
for (i = inc; i < size; i++) {
SORT_TYPE temp = dst[i];
size_t j = i;
while ((j >= inc) && (SORT_CMP(dst[j - inc], temp) > 0)) {
dst[j] = dst[j - inc];
j -= inc;
}
dst[j] = temp;
}
if (inc == 1) {
break;
}
inc = shell_gaps[--inci];
}
}
/* Function used to do a binary search for binary insertion sort */
static __inline size_t BINARY_INSERTION_FIND(SORT_TYPE *dst, const SORT_TYPE x,
const size_t size) {
size_t l, c, r;
SORT_TYPE cx;
l = 0;
r = size - 1;
c = r >> 1;
/* check for out of bounds at the beginning. */
if (SORT_CMP(x, dst[0]) < 0) {
return 0;
} else if (SORT_CMP(x, dst[r]) > 0) {
return r;
}
cx = dst[c];
while (1) {
const int val = SORT_CMP(x, cx);
if (val < 0) {
if (c - l <= 1) {
return c;
}
r = c;
} else { /* allow = for stability. The binary search favors the right. */
if (r - c <= 1) {
return c + 1;
}
l = c;
}
c = l + ((r - l) >> 1);
cx = dst[c];
}
}
/* Binary insertion sort, but knowing that the first "start" entries are sorted. Used in timsort. */
static void BINARY_INSERTION_SORT_START(SORT_TYPE *dst, const size_t start, const size_t size) {
size_t i;
for (i = start; i < size; i++) {
size_t j;
SORT_TYPE x;
size_t location;
/* If this entry is already correct, just move along */
if (SORT_CMP(dst[i - 1], dst[i]) <= 0) {
continue;
}
/* Else we need to find the right place, shift everything over, and squeeze in */
x = dst[i];
location = BINARY_INSERTION_FIND(dst, x, i);
for (j = i - 1; j >= location; j--) {
dst[j + 1] = dst[j];
if (j == 0) { /* check edge case because j is unsigned */
break;
}
}
dst[location] = x;
}
}
/* Binary insertion sort */
SORT_DEF void BINARY_INSERTION_SORT(SORT_TYPE *dst, const size_t size) {
/* don't bother sorting an array of size <= 1 */
if (size <= 1) {
return;
}
BINARY_INSERTION_SORT_START(dst, 1, size);
}
/* In-place mergesort */
SORT_DEF void MERGE_SORT_IN_PLACE_ASWAP(SORT_TYPE * dst1, SORT_TYPE * dst2, size_t len) {
do {
SORT_SWAP(*dst1, *dst2);
dst1++;
dst2++;
} while (--len);
}
SORT_DEF void MERGE_SORT_IN_PLACE_FRONTMERGE(SORT_TYPE *dst1, size_t l1, SORT_TYPE *dst2,
size_t l2) {
SORT_TYPE *dst0 = dst2 - l1;
if (SORT_CMP(dst1[l1 - 1], dst2[0]) <= 0) {
MERGE_SORT_IN_PLACE_ASWAP(dst1, dst0, l1);
return;
}
do {
while (SORT_CMP(*dst2, *dst1) > 0) {
SORT_SWAP(*dst1, *dst0);
dst1++;
dst0++;
if (--l1 == 0) {
return;
}
}
SORT_SWAP(*dst2, *dst0);
dst2++;
dst0++;
} while (--l2);
do {
SORT_SWAP(*dst1, *dst0);
dst1++;
dst0++;
} while (--l1);
}
SORT_DEF size_t MERGE_SORT_IN_PLACE_BACKMERGE(SORT_TYPE * dst1, size_t l1, SORT_TYPE * dst2,
size_t l2) {
size_t res;
SORT_TYPE *dst0 = dst2 + l1;
if (SORT_CMP(dst1[1 - l1], dst2[0]) >= 0) {
MERGE_SORT_IN_PLACE_ASWAP(dst1 - l1 + 1, dst0 - l1 + 1, l1);
return l1;
}
do {
while (SORT_CMP(*dst2, *dst1) < 0) {