crabmole 0.0.3

Porting Go standard library in Rust
Documentation
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
struct LessSwap<'a, T, L> {
    data: &'a mut [T],
    less: L,
}

struct ImmutableLessSwap<'a, T, L> {
    data: &'a [T],
    less: L,
}

impl<'a, T, L> Sort for ImmutableLessSwap<'a, T, L>
where
    L: Fn(usize, usize) -> bool,
{
    fn len(&self) -> usize {
        self.data.len()
    }

    fn swap(&mut self, _i: usize, _j: usize) {
        unreachable!()
    }

    fn less(&self, i: usize, j: usize) -> bool {
        (self.less)(i, j)
    }
}

impl<'a, T, L> Sort for LessSwap<'a, T, L>
where
    L: Fn(&[T], usize, usize) -> bool,
{
    fn len(&self) -> usize {
        self.data.len()
    }

    fn swap(&mut self, i: usize, j: usize) {
        self.data.swap(i, j);
    }

    fn less(&self, i: usize, j: usize) -> bool {
        (self.less)(self.data, i, j)
    }
}

/// Golang's `sort.Slice`, `sort.SliceStable` and `sort.SliceIsSorted` in Rust
pub trait SliceSortExt {
    /// Item
    type Item;

    /// Slice sorts the slice x given the provided less function.
    ///
    /// The sort is not guaranteed to be stable: equal elements
    /// may be reversed from their original order.
    /// For a stable sort, use `slice_stable`.
    #[inline]
    fn sort_slice<L>(data: &mut [Self::Item], less: L)
    where
        L: Fn(&[Self::Item], usize, usize) -> bool,
    {
        let mut sorter = LessSwap { data, less };
        sorter.sort()
    }

    /// Sorts the slice data using the provided less
    /// function, keeping equal elements in their original order.
    #[inline]
    fn sort_slice_stable<L>(data: &mut [Self::Item], less: L)
    where
        L: Fn(&[Self::Item], usize, usize) -> bool,
    {
        let mut sorter = LessSwap { data, less };
        sorter.sort_stable()
    }

    /// Returns whether the slice x is sorted according to the provided less function.
    #[inline]
    fn slice_is_sorted<L>(data: &[Self::Item], less: L) -> bool
    where
        L: Fn(usize, usize) -> bool,
    {
        let sorter = ImmutableLessSwap { data, less };
        sorter.is_sorted()
    }
}

impl<T> SliceSortExt for T {
    type Item = T;
}

/// Slice sorts the slice x given the provided less function.
///
/// The sort is not guaranteed to be stable: equal elements
/// may be reversed from their original order.
/// For a stable sort, use `slice_stable`.
#[inline]
pub fn sort_slice<T, L>(data: &mut [T], less: L)
where
    L: Fn(&[T], usize, usize) -> bool,
{
    let mut sorter = LessSwap { data, less };
    sorter.sort()
}

/// Sorts the slice data using the provided less
/// function, keeping equal elements in their original order.
#[inline]
pub fn sort_slice_stable<T, L>(data: &mut [T], less: L)
where
    L: Fn(&[T], usize, usize) -> bool,
{
    let mut sorter = LessSwap { data, less };
    sorter.sort_stable()
}

/// Returns whether the slice x is sorted according to the provided less function.
#[inline]
pub fn slice_is_sorted<T, L>(data: &[T], less: L) -> bool
where
    L: Fn(usize, usize) -> bool,
{
    let sorter = ImmutableLessSwap { data, less };
    sorter.is_sorted()
}

/// Sort in reverse helper structure
struct Reverse<'a, T>(&'a mut T);

impl<'a, T: Sort> Sort for Reverse<'a, T> {
    fn len(&self) -> usize {
        self.0.len()
    }

    fn swap(&mut self, i: usize, j: usize) {
        self.0.swap(i, j);
    }

    fn less(&self, i: usize, j: usize) -> bool {
        self.0.less(j, i)
    }
}

struct ImmutableReverse<'a, T>(&'a T);

impl<'a, T: Sort> Sort for ImmutableReverse<'a, T> {
    fn len(&self) -> usize {
        self.0.len()
    }

    fn swap(&mut self, _i: usize, _j: usize) {
        unreachable!()
    }

    fn less(&self, i: usize, j: usize) -> bool {
        self.0.less(j, i)
    }
}

/// Golang sort interface in Rust.
///
/// Implement this trait for type to unlock all the sorting methods in Go standard library.
#[allow(clippy::len_without_is_empty)]
pub trait Sort {
    /// Len is the number of elements in the collection.
    fn len(&self) -> usize;

    /// Less reports whether the element with index i
    /// must sort before the element with index j.
    ///
    /// If both Less(i, j) and Less(j, i) are false,
    /// then the elements at index i and j are considered equal.
    /// Sort may place equal elements in any order in the final result,
    /// while Stable preserves the original input order of equal elements.
    ///
    /// Less must describe a transitive ordering:
    ///  - if both less(i, j) and Less(j, k) are true, then Less(i, k) must be true as well.
    ///  - if both less(i, j) and less(j, k) are false, then less(i, k) must be false as well.
    fn less(&self, i: usize, j: usize) -> bool;

    /// Swaps the elements with indexes i and j.
    fn swap(&mut self, i: usize, j: usize);

    /// Sort data.
    /// It makes one call to data.Len to determine n and O(n*log(n)) calls to
    /// data.Less and data.Swap. The sort is not guaranteed to be stable.
    #[inline]
    fn sort(&mut self)
    where
        Self: Sized,
    {
        let n = self.len();
        quick_sort(self, 0, n, max_depth(n));
    }

    /// Notes on stable sorting:
    /// The used algorithms are simple and provable correct on all input and use
    /// only logarithmic additional stack space. They perform well if compared
    /// experimentally to other stable in-place sorting algorithms.
    ///
    /// Remarks on other algorithms evaluated:
    ///  - GCC's 4.6.3 stable_sort with merge_without_buffer from libstdc++:
    ///    Not faster.
    ///  - GCC's __rotate for block rotations: Not faster.
    ///  - "Practical in-place mergesort" from  Jyrki Katajainen, Tomi A. Pasanen
    ///    and Jukka Teuhola; Nordic Journal of Computing 3,1 (1996), 27-40:
    ///    The given algorithms are in-place, number of Swap and Assignments
    ///    grow as n log n but the algorithm is not stable.
    ///  - "Fast Stable In-Place Sorting with O(n) Data Moves" J.I. Munro and
    ///    V. Raman in Algorithmica (1996) 16, 115-160:
    ///    This algorithm either needs additional 2n bits or works only if there
    ///    are enough different elements available to encode some permutations
    ///    which have to be undone later (so not stable on any input).
    ///  - All the optimal in-place sorting/merging algorithms I found are either
    ///    unstable or rely on enough different elements in each step to encode the
    ///    performed block rearrangements. See also "In-Place Merging Algorithms",
    ///    Denham Coates-Evely, Department of Computer Science, Kings College,
    ///    January 2004 and the references in there.
    ///  - Often "optimal" algorithms are optimal in the number of assignments
    ///    but Interface has only Swap as operation.
    ///
    /// Stable sorts data in ascending order as determined by the Less method,
    /// while keeping the original order of equal elements.
    ///
    /// It makes one call to data.Len to determine n, O(n*log(n)) calls to
    /// data.Less and O(n*log(n)*log(n)) calls to data.Swap.
    #[inline]
    fn sort_stable(&mut self)
    where
        Self: Sized,
    {
        let n = self.len();
        stable(self, n);
    }

    /// Returns whether the data is sorted.
    #[inline]
    fn is_sorted(&self) -> bool {
        let len = self.len();

        let n = (len >> 1) + 1;
        for i in 1..n {
            if self.less(i, i - 1) {
                return false;
            }
            let tail_off = len - i;

            if self.less(tail_off, tail_off - 1) {
                return false;
            }
        }
        true
    }

    /// Returns whether the data is sorted in reverse order.
    #[inline]
    fn is_reverse_sorted(&self) -> bool {
        let n = self.len();
        for i in (1..n).rev() {
            if self.less(i - 1, i) {
                return false;
            }
        }
        true
    }

    /// Sorts data in reverse order.
    /// It makes one call to data.Len to determine n and O(n*log(n)) calls to
    /// data.Less and data.Swap. The sort is not guaranteed to be stable.
    #[inline]
    fn sort_reverse(&mut self)
    where
        Self: Sized,
    {
        let n = self.len();
        quick_sort(&mut Reverse(self), 0, n, max_depth(n));
    }

    /// Sorts (stable) data in reverse order.
    ///  
    /// Notes on stable sorting:
    /// The used algorithms are simple and provable correct on all input and use
    /// only logarithmic additional stack space. They perform well if compared
    /// experimentally to other stable in-place sorting algorithms.
    ///
    /// Remarks on other algorithms evaluated:
    ///  - GCC's 4.6.3 stable_sort with merge_without_buffer from libstdc++:
    ///    Not faster.
    ///  - GCC's __rotate for block rotations: Not faster.
    ///  - "Practical in-place mergesort" from  Jyrki Katajainen, Tomi A. Pasanen
    ///    and Jukka Teuhola; Nordic Journal of Computing 3,1 (1996), 27-40:
    ///    The given algorithms are in-place, number of Swap and Assignments
    ///    grow as n log n but the algorithm is not stable.
    ///  - "Fast Stable In-Place Sorting with O(n) Data Moves" J.I. Munro and
    ///    V. Raman in Algorithmica (1996) 16, 115-160:
    ///    This algorithm either needs additional 2n bits or works only if there
    ///    are enough different elements available to encode some permutations
    ///    which have to be undone later (so not stable on any input).
    ///  - All the optimal in-place sorting/merging algorithms I found are either
    ///    unstable or rely on enough different elements in each step to encode the
    ///    performed block rearrangements. See also "In-Place Merging Algorithms",
    ///    Denham Coates-Evely, Department of Computer Science, Kings College,
    ///    January 2004 and the references in there.
    ///  - Often "optimal" algorithms are optimal in the number of assignments
    ///    but Interface has only Swap as operation.
    ///
    /// Stable sorts data in ascending order as determined by the Less method,
    /// while keeping the original order of equal elements.
    ///
    /// It makes one call to data.Len to determine n, O(n*log(n)) calls to
    /// data.Less and O(n*log(n)*log(n)) calls to data.Swap.
    #[inline]
    fn sort_stable_reverse(&mut self)
    where
        Self: Sized,
    {
        let n = self.len();
        stable(&mut Reverse(self), n);
    }
}

#[inline]
fn __swap_slice<T>(data: &mut [T], i: usize, j: usize) {
    data.swap(i, j)
}

#[inline]
const fn __slice_len<T>(data: &[T]) -> usize {
    data.len()
}

#[cfg(feature = "alloc")]
impl<T: PartialOrd + core::fmt::Debug> Sort for ::alloc::vec::Vec<T> {
    fn len(&self) -> usize {
        __slice_len(self)
    }

    fn less(&self, i: usize, j: usize) -> bool {
        self[i] < self[j]
    }

    fn swap(&mut self, i: usize, j: usize) {
        __swap_slice(self, i, j);
    }
}

impl<'a, T: PartialOrd + core::fmt::Debug> Sort for &'a mut [T] {
    fn len(&self) -> usize {
        __slice_len(self)
    }

    fn less(&self, i: usize, j: usize) -> bool {
        self[i] < self[j]
    }

    fn swap(&mut self, i: usize, j: usize) {
        __swap_slice(self, i, j);
    }
}

impl<const N: usize, T: PartialOrd + core::fmt::Debug> Sort for [T; N] {
    fn len(&self) -> usize {
        __slice_len(self)
    }

    fn less(&self, i: usize, j: usize) -> bool {
        self[i] < self[j]
    }

    fn swap(&mut self, i: usize, j: usize) {
        __swap_slice(self, i, j);
    }
}

#[cfg(feature = "alloc")]
impl<T: PartialOrd + core::fmt::Debug> Sort for ::alloc::boxed::Box<[T]> {
    fn len(&self) -> usize {
        __slice_len(self)
    }

    fn less(&self, i: usize, j: usize) -> bool {
        self[i] < self[j]
    }

    fn swap(&mut self, i: usize, j: usize) {
        __swap_slice(self, i, j);
    }
}

/// Sorts data[a:b] using insertion sort.
#[inline]
fn insertion_sort(data: &mut impl Sort, a: usize, b: usize) {
    for i in a + 1..b {
        let mut j = i;
        while j > a && data.less(j, j - 1) {
            data.swap(j, j - 1);
            j -= 1;
        }
    }
}

/// Implements the heap property on data[lo:hi].
/// first is an offset into the array where the root of the heap lies.
#[inline]
fn sift_down(data: &mut impl Sort, lo: usize, hi: usize, first: usize) {
    let mut root = lo;
    loop {
        let mut child = 2 * root + 1;
        if child >= hi {
            break;
        }

        if child + 1 < hi && data.less(first + child, first + child + 1) {
            child += 1;
        }

        if !data.less(first + root, first + child) {
            return;
        }

        data.swap(first + root, first + child);
        root = child;
    }
}

#[inline]
fn heap_sort(data: &mut impl Sort, a: usize, b: usize) {
    let first = a;
    let lo = 0;
    let hi = b - a;

    // Build heap with greatest element at top.
    let mut i = (hi - 1) / 2;
    loop {
        sift_down(data, i, hi, first);
        match i.checked_sub(1) {
            Some(v) => i = v,
            None => break,
        }
    }

    // Pop elements, largest first, into end of data.
    let mut i = hi - 1;
    loop {
        data.swap(first, first + i);
        sift_down(data, lo, i, first);
        match i.checked_sub(1) {
            Some(v) => i = v,
            None => break,
        }
    }
}

#[inline]
fn median_of_three(data: &mut impl Sort, m1: usize, m0: usize, m2: usize) {
    // sort 3 elements
    if data.less(m1, m0) {
        data.swap(m1, m0);
    }

    // data[m0] <= data[m1]
    if data.less(m2, m1) {
        data.swap(m2, m1);
        // data[m0] <= data[m2] && data[m1] < data[m2]
        if data.less(m1, m0) {
            data.swap(m1, m0);
        }
    }
    // now data[m0] <= data[m1] <= data[m2]
}

#[inline]
fn swap_range(data: &mut impl Sort, a: usize, b: usize, n: usize) {
    for i in 0..n {
        data.swap(a + i, b + i);
    }
}

#[inline]
fn do_pivot(data: &mut impl Sort, lo: usize, hi: usize) -> (usize, usize) {
    let m = (lo + hi) >> 1;
    if hi - lo > 40 {
        // Tukey ninther, median of three medians of three
        let s = (hi - lo) / 8;
        median_of_three(data, lo, lo + s, lo + 2 * s);
        median_of_three(data, m, m - s, m + s);
        median_of_three(data, hi - 1, hi - 1 - s, hi - 1 - 2 * s);
    }
    median_of_three(data, lo, m, hi - 1);
    // Invariants are:
    //	data[lo] = pivot (set up by ChoosePivot)
    //	data[lo < i < a] < pivot
    //	data[a <= i < b] <= pivot
    //	data[b <= i < c] unexamined
    //	data[c <= i < hi-1] > pivot
    //	data[hi-1] >= pivot
    let pivot = lo;
    let (mut a, mut c) = (lo + 1, hi - 1);
    while a < c && data.less(a, pivot) {
        a += 1;
    }
    let mut b = a;
    loop {
        // data[b] <= pivot
        while b < c && !data.less(pivot, b) {
            b += 1;
        }
        // data[c-1] > pivot
        while b < c && data.less(pivot, c - 1) {
            c -= 1;
        }
        if b >= c {
            break;
        }
        // data[b] > pivot; data[c-1] <= pivot
        data.swap(b, c - 1);
        b += 1;
        c -= 1;
    }

    // If hi-c<3 then there are duplicates (by property of median of nine).
    // Let's be a bit more conservative, and set border to 5.
    let mut protect = hi - c < 5;
    if !protect && hi - c < (hi - lo) / 4 {
        // Lets test some points for equality to pivot
        let mut dups = 0;
        // data[hi-1] = pivot
        if !data.less(pivot, hi - 1) {
            data.swap(c, hi - 1);
            c += 1;
            dups += 1;
        }

        // data[b-1] = pivot
        if !data.less(b - 1, pivot) {
            b -= 1;
            dups += 1;
        }

        // m-lo = (hi-lo)/2 > 6
        // b-lo > (hi-lo)*3/4-1 > 8
        // ==> m < b ==> data[m] <= pivot
        if !data.less(m, pivot) {
            data.swap(m, b - 1);
            b -= 1;
            dups += 1;
        }

        // if at least 2 points are equal to pivot, assume skewed distribution
        protect = dups > 1;
    }

    if protect {
        // Protect against a lot of duplicates
        // Add invariant:
        //	data[a <= i < b] unexamined
        //	data[b <= i < c] = pivot
        loop {
            // data[b] == pivot
            while a < b && !data.less(b - 1, pivot) {
                b -= 1;
            }
            // data[a] < pivot
            while a < b && data.less(a, pivot) {
                a += 1;
            }
            if a >= b {
                break;
            }
            // data[a] == pivot; data[b-1] < pivot
            data.swap(a, b - 1);
            a += 1;
            b -= 1;
        }
    }
    // Swap pivot into middle
    data.swap(pivot, b - 1);
    (b - 1, c)
}

#[inline]
fn quick_sort(data: &mut impl Sort, mut a: usize, mut b: usize, mut max_depth: usize) {
    while b - a > 12 {
        if max_depth == 0 {
            heap_sort(data, a, b);
            return;
        }

        max_depth -= 1;
        let (mlo, mhi) = do_pivot(data, a, b);
        // Avoiding recursion on the larger subproblem guarantees
        // a stack depth of at most lg(b-a).
        if mlo - a < b - mhi {
            quick_sort(data, a, mlo, max_depth);
            a = mhi; // i.e., quickSort(data, mhi, b)
        } else {
            quick_sort(data, mhi, b, max_depth);
            b = mlo; // i.e., quickSort(data, a, mlo)
        }
    }
    if b - a > 1 {
        // Do ShellSort pass with gap 6
        // It could be written in this simplified form cause b-a <= 12
        for i in a + 6..b {
            if data.less(i, i - 6) {
                data.swap(i, i - 6);
            }
        }
        insertion_sort(data, a, b)
    }
}

#[inline]
fn stable(data: &mut impl Sort, n: usize) {
    let mut block_size = 5;
    let (mut a, mut b) = (0, block_size);
    while b <= n {
        insertion_sort(data, a, b);
        a = b;
        b += block_size;
    }

    insertion_sort(data, a, n);
    while block_size < n {
        a = 0;
        b = 2 * block_size;
        while b <= n {
            syn_merge(data, a, a + block_size, b);
            a = b;
            b += 2 * block_size;
        }
        let m = a + block_size;
        if m < n {
            syn_merge(data, a, m, n);
        }
        block_size *= 2;
    }
}

/// Merges the two sorted subsequences data[a:m] and data[m:b] using
/// the SymMerge algorithm from Pok-Son Kim and Arne Kutzner, "Stable Minimum
/// Storage Merging by Symmetric Comparisons", in Susanne Albers and Tomasz
/// Radzik, editors, Algorithms - ESA 2004, volume 3221 of Lecture Notes in
/// Computer Science, pages 714-723. Springer, 2004.
///
/// Let M = m-a and N = b-n. Wolog M < N.
/// The recursion depth is bound by ceil(log(N+M)).
/// The algorithm needs O(M*log(N/M + 1)) calls to data.Less.
/// The algorithm needs O((M+N)*log(M)) calls to data.Swap.
///
/// The paper gives O((M+N)*log(M)) as the number of assignments assuming a
/// rotation algorithm which uses O(M+N+gcd(M+N)) assignments. The argumentation
/// in the paper carries through for Swap operations, especially as the block
/// swapping rotate uses only O(M+N) Swaps.
///
/// symMerge assumes non-degenerate arguments: a < m && m < b.
/// Having the caller check this condition eliminates many leaf recursion calls,
/// which improves performance.
#[inline]
fn syn_merge(data: &mut impl Sort, a: usize, m: usize, b: usize) {
    // Avoid unnecessary recursions of symMerge
    // by direct insertion of data[a] into data[m:b]
    // if data[a:m] only contains one element.
    if m - a == 1 {
        // Use binary search to find the lowest index i
        // such that data[i] >= data[a] for m <= i < b.
        // Exit the search loop with i == b in case no such index exists.
        let mut i = m;
        let mut j = b;
        while i < j {
            let h = (i + j) >> 1;
            if data.less(h, a) {
                i = h + 1;
            } else {
                j = h;
            }
        }

        // Swap values until data[a] reaches the position before i.
        for k in a..i - 1 {
            data.swap(k, k + 1);
        }
        return;
    }

    // Avoid unnecessary recursions of sym_merge
    // by direct insertion of data[m] into data[a:m]
    // if data[m:b] only contains one element.
    if b - m == 1 {
        // Use binary search to find the lowest index i
        // such that data[i] > data[m] for a <= i < m.
        // Exit the search loop with i == m in case no such index exists.
        let mut i = a;
        let mut j = m;
        while i < j {
            let h = (i + j) >> 1;
            if !data.less(m, h) {
                i = h + 1;
            } else {
                j = h;
            }
        }

        // Swap values until data[m] reaches the position i.
        let mut k = m;
        while k > i {
            data.swap(k, k - 1);
            k -= 1;
        }
        return;
    }

    let mid = (a + b) >> 1;
    let n = mid + m;
    let (mut start, mut r) = if m > mid { (n - b, mid) } else { (a, m) };

    let p = n - 1;
    while start < r {
        let c = (start + r) >> 1;
        if !data.less(p - c, c) {
            start = c + 1;
        } else {
            r = c;
        }
    }

    let end = n - start;
    if start < m && m < end {
        rotate(data, start, m, end);
    }

    if a < start && start < mid {
        syn_merge(data, a, start, mid);
    }

    if mid < end && end < b {
        syn_merge(data, mid, end, b);
    }
}

/// Rotates two consecutive blocks u = data[a:m] and v = data[m:b] in data:
/// Data of the form 'x u v y' is changed to 'x v u y'.
/// rotate performs at most b-a many calls to data.Swap,
/// and it assumes non-degenerate arguments: a < m && m < b.
#[inline]
fn rotate(data: &mut impl Sort, a: usize, m: usize, b: usize) {
    let mut i = m - a;
    let mut j = b - m;

    while i != j {
        if i > j {
            swap_range(data, m - i, m, j);
            i -= j;
        } else {
            swap_range(data, m - i, m + j - i, i);
            j -= i;
        }
    }

    // i == j
    swap_range(data, m - i, m, i);
}

/// Returns a threshold at which quicksort should switch
/// to heapsort. It returns 2*ceil(lg(n+1)).
#[inline]
fn max_depth(n: usize) -> usize {
    let mut depth = 0;
    let mut i = n;
    while i > 0 {
        depth += 1;
        i >>= 1;
    }
    depth * 2
}

/// Sort data.
/// It makes one call to `data.len` to determine n and `O(n*log(n))` calls to
/// `data.less` and `data.swap`. The sort is not guaranteed to be stable.
#[inline]
pub fn sort(data: &mut impl Sort) {
    let n = data.len();
    quick_sort(data, 0, n, max_depth(n));
}

/// Sort data (stable).
#[inline]
pub fn sort_stable(data: &mut impl Sort) {
    let n = data.len();
    stable(data, n);
}

/// Sort data in reverse order.
#[inline]
pub fn sort_reverse(data: &mut impl Sort) {
    let n = data.len();
    quick_sort(&mut Reverse(data), 0, n, max_depth(n));
}

/// Sort data in reverse order (stable).
#[inline]
pub fn sort_stable_reverse(data: &mut impl Sort) {
    let n = data.len();
    stable(&mut Reverse(data), n);
}

/// Golang's `sort.Search` in Rust.
#[inline]
pub fn search<F>(n: usize, mut f: F) -> usize
where
    F: FnMut(usize) -> bool,
{
    let mut i = 0;
    let mut j = n;
    while i < j {
        let h = (i + j) >> 1;
        if !f(h) {
            i = h + 1;
        } else {
            j = h;
        }
    }
    i
}

#[cfg(test)]
#[allow(warnings)]
mod tests {
    use super::*;
    use rand::Rng;
    use std::cell::{Cell, RefCell};

    const INTS: &[isize] = &[
        74, 59, 238, -784, 9845, 959, 905, 0, 0, 42, 7586, -5467984, 7586,
    ];

    const FLOATS: &[f64] = &[
        74.3,
        59.0,
        f64::INFINITY,
        238.2,
        -784.0,
        2.3,
        f64::NAN,
        f64::NAN,
        f64::INFINITY * -1f64,
        9845.768,
        -959.7485,
        905f64,
        7.8,
        7.8,
    ];

    const STRINGS: &[&str] = &["", "Hello", "foo", "bar", "foo", "f00", "%*&^*&^&", "***"];

    #[test]
    fn test_sort_int_slice() {
        let mut data = INTS.to_vec();
        Sort::sort(&mut data);
        assert!(Sort::is_sorted(&data));

        let mut data = INTS.to_vec();
        Sort::sort_stable(&mut data);
        assert!(Sort::is_sorted(&data));
    }

    #[test]
    fn test_sort_f64_slice() {
        let mut data = FLOATS.to_vec();
        Sort::sort(&mut data);
        assert!(Sort::is_sorted(&data));

        let mut data = FLOATS.to_vec();
        Sort::sort_stable(&mut data);
        assert!(Sort::is_sorted(&data));
    }

    #[test]
    fn test_sort_string_slice() {
        let mut data = STRINGS.iter().map(|s| s.to_string()).collect::<Vec<_>>();
        Sort::sort(&mut data);
        assert!(Sort::is_sorted(&data));

        let mut data = STRINGS.iter().map(|s| s.to_string()).collect::<Vec<_>>();
        Sort::sort_stable(&mut data);
        assert!(Sort::is_sorted(&data));
    }

    #[test]
    fn test_slice() {
        let mut data = STRINGS.iter().map(|s| s.to_string()).collect::<Vec<_>>();

        String::sort_slice(&mut data, |d, i, j| d[i] < d[j]);

        assert!(String::slice_is_sorted(&data, |i, j| { data[i] < data[j] }));

        let mut data = STRINGS.iter().map(|s| s.to_string()).collect::<Vec<_>>();

        String::sort_slice_stable(&mut data, |d, i, j| d[i] < d[j]);

        assert!(String::slice_is_sorted(&data, |i, j| { data[i] < data[j] }));
    }

    #[test]
    fn test_sort_large_random() {
        let mut data = (0..1000000)
            .map(|_| rand::random::<isize>())
            .collect::<Vec<_>>();
        Sort::sort(&mut data);
        assert!(Sort::is_sorted(&data));

        let mut data = (0..1000000)
            .map(|_| rand::random::<isize>())
            .collect::<Vec<_>>();
        Sort::sort_stable(&mut data);
        assert!(Sort::is_sorted(&data));
    }

    #[test]
    fn test_reverse_sort_int_slice() {
        let mut data = INTS.to_vec();
        let mut data1 = INTS.to_vec();

        Sort::sort(&mut data);
        Sort::sort_reverse(&mut data1);
        for i in 0..INTS.len() {
            assert_eq!(data[i], data1[INTS.len() - i - 1]);
            if i > data.len() / 2 {
                break;
            }
        }
    }

    #[derive(Debug)]
    struct NonDeterministicTestingData;

    impl Sort for NonDeterministicTestingData {
        fn len(&self) -> usize {
            500
        }

        fn less(&self, i: usize, j: usize) -> bool {
            if i >= self.len() || j >= self.len() {
                panic!("nondeterministic comparison out of bounds")
            }

            rand::thread_rng().gen_range(0f32..1f32) < 0.5f32
        }

        fn swap(&mut self, i: usize, j: usize) {
            if i >= self.len() || j >= self.len() {
                panic!("nondeterministic comparison out of bounds")
            }
        }
    }

    #[test]
    fn test_non_deterministic_comparison() {
        for _ in 0..10 {
            Sort::sort(&mut NonDeterministicTestingData);
        }
    }

    #[derive(Copy, Clone)]
    #[repr(u8)]
    enum Distribution {
        Sawtooth,
        Rand,
        Stagger,
        Plateau,
        Shuffle,
        NDist,
    }

    impl From<usize> for Distribution {
        fn from(i: usize) -> Self {
            match i {
                0 => Distribution::Sawtooth,
                1 => Distribution::Rand,
                2 => Distribution::Stagger,
                3 => Distribution::Plateau,
                4 => Distribution::Shuffle,
                5 => Distribution::NDist,
                _ => unreachable!(),
            }
        }
    }

    #[derive(Copy, Clone)]
    #[repr(u8)]
    enum Mode {
        Copy,
        Reverse,
        ReverseFirstHalf,
        ReverseSecondHalf,
        Sorted,
        Dither,
        NMode,
    }

    impl From<usize> for Mode {
        fn from(i: usize) -> Self {
            match i {
                0 => Mode::Copy,
                1 => Mode::Reverse,
                2 => Mode::ReverseFirstHalf,
                3 => Mode::ReverseSecondHalf,
                4 => Mode::Sorted,
                5 => Mode::Dither,
                6 => Mode::NMode,
                _ => unreachable!(),
            }
        }
    }

    #[derive(Debug)]
    struct TestingData {
        desc: String,
        data: Vec<usize>,
        max_swap: usize,
        ncmp: Cell<usize>,
        nswap: usize,
    }

    impl Sort for TestingData {
        fn len(&self) -> usize {
            self.data.len()
        }

        fn less(&self, i: usize, j: usize) -> bool {
            let cmp = self.ncmp.get();
            self.ncmp.set(cmp + 1);
            self.data[i] < self.data[j]
        }

        fn swap(&mut self, i: usize, j: usize) {
            if self.nswap >= self.max_swap {
                panic!(
                    "{}: used {} swaps sorting slice of {}",
                    self.desc,
                    self.nswap,
                    self.data.len()
                );
            }
            self.nswap += 1;
            self.data.swap(i, j);
        }
    }

    fn test_bentley_mc_ilroy<S, M>(sort: S, maxswap: M)
    where
        S: Fn(&mut TestingData),
        M: Fn(usize) -> usize,
    {
        let sizes = [100, 1023, 1024, 1025];
        let dists = ["sawtooth", "rand", "stagger", "plateau", "shuffle"];
        let modes = ["copy", "reverse", "reverse1", "reverse2", "sort", "dither"];

        let tmp1 = [0; 1025];
        let tmp2 = [0; 1025];
        for n in sizes {
            let mut m = 1;
            while m < 2 * n {
                for dist in 0..Distribution::NDist as usize {
                    let mut j = 0;
                    let mut k = 1;
                    let mut data = tmp1[0..n].to_vec();
                    for i in 0..n {
                        match Distribution::from(dist) {
                            Distribution::Sawtooth => {
                                data[i] = i % m;
                            }
                            Distribution::Rand => {
                                data[i] = rand::thread_rng().gen_range(0..m);
                            }
                            Distribution::Stagger => {
                                data[i] = (i * m + i) % n;
                            }
                            Distribution::Plateau => {
                                data[i] = i.min(m);
                            }
                            Distribution::Shuffle => {
                                let v = rand::thread_rng().gen_range(0..m);
                                if v != 0 {
                                    j += 2;
                                    data[i] = j;
                                } else {
                                    k += 2;
                                    data[i] = k;
                                }
                            }
                            _ => unreachable!(),
                        }
                    }

                    let mut mdata = tmp2[0..n].to_vec();
                    for mode in 0..Mode::NMode as usize {
                        match Mode::from(mode) {
                            Mode::Copy => {
                                mdata.copy_from_slice(&data);
                            }
                            Mode::Reverse => {
                                for i in 0..n {
                                    mdata[i] = data[n - i - 1];
                                }
                            }
                            Mode::ReverseFirstHalf => {
                                for i in 0..n / 2 {
                                    mdata[i] = data[n / 2 - i - 1];
                                }
                                mdata[(n / 2)..n].copy_from_slice(&data[(n / 2)..n]);
                            }
                            Mode::ReverseSecondHalf => {
                                mdata[..(n / 2)].copy_from_slice(&data[..(n / 2)]);
                                for i in n / 2..n {
                                    mdata[i] = data[n - (i - n / 2) - 1];
                                }
                            }
                            Mode::Sorted => {
                                mdata.copy_from_slice(&data);
                                mdata.sort();
                            }
                            Mode::Dither => {
                                for i in 0..n {
                                    mdata[i] = data[i] + i % 5;
                                }
                            }
                            _ => unreachable!(),
                        }

                        let desc = format!(
                            "n={}, m={}, dist={}, mode={}",
                            n, m, dists[dist], modes[mode]
                        );
                        let mut d = TestingData {
                            desc,
                            data: mdata.clone(),
                            max_swap: maxswap(n),
                            ncmp: Cell::new(0),
                            nswap: 0,
                        };
                        sort(&mut d);

                        // Uncomment if you are trying to improve the number of compares/swaps.
                        //t.Logf("%s: ncmp=%d, nswp=%d", desc, d.ncmp, d.nswap)

                        // If we were testing C qsort, we'd have to make a copy
                        // of the slice and sort it ourselves and then compare
                        // x against it, to ensure that qsort was only permuting
                        // the data, not (for example) overwriting it with zeros.
                        //
                        // In go, we don't have to be so paranoid: since the only
                        // mutating method Sort can call is TestingData.swap,
                        // it suffices here just to check that the final slice is sorted.
                        assert!(
                            d.data.is_sorted(),
                            "{}: data not sorted {:?}",
                            d.desc,
                            mdata
                        );
                    }
                }
                m *= 2;
            }
        }
    }

    fn lg(n: usize) -> usize {
        let mut i = 0;
        while (1 << i) < n {
            i += 1;
        }
        i
    }

    #[test]
    fn test_sort_bm() {
        test_bentley_mc_ilroy(
            |data| {
                data.sort();
            },
            |n| n * lg(n) * 12 / 10,
        );
    }

    #[test]
    fn test_stable_bm() {
        test_bentley_mc_ilroy(
            |data| {
                data.sort_stable();
            },
            |n| n * lg(n) * lg(n) / 3,
        );
    }

    // This is based on the "antiquicksort" implementation by M. Douglas McIlroy.
    // See https://www.cs.dartmouth.edu/~doug/mdmspe.pdf for more info.
    struct AdversaryTestingData {
        /// item values, initialized to special gas value and changed by Less
        data: RefCell<Vec<usize>>,
        /// number of comparisons allowed
        maxcmp: usize,
        /// number of comparisons (calls to Less)
        ncmp: Cell<usize>,
        /// number of elements that have been set to non-gas values
        nsolid: Cell<usize>,
        /// guess at current pivot
        candidate: Cell<usize>,
        /// special value for unset elements, higher than everything else
        gas: usize,
    }

    impl Sort for AdversaryTestingData {
        fn len(&self) -> usize {
            self.data.borrow().len()
        }

        fn less(&self, i: usize, j: usize) -> bool {
            let mut data = self.data.borrow_mut();
            let ncmp = self.ncmp.get();
            assert!(
                ncmp < self.maxcmp,
                "used {} comparisons sorting adversary data with size {}",
                ncmp,
                data.len()
            );
            self.ncmp.set(ncmp + 1);

            if data[i] == self.gas && data[j] == self.gas {
                let nsolid = self.nsolid.get();
                if i == self.candidate.get() {
                    // freeze i
                    data[i] = nsolid;
                    self.nsolid.set(nsolid + 1);
                } else {
                    // freeze j
                    data[j] = nsolid;
                    self.nsolid.set(nsolid + 1);
                }
            }

            if data[i] == self.gas {
                self.candidate.set(i);
            } else if data[j] == self.gas {
                self.candidate.set(j);
            }

            data[i] < data[j]
        }

        fn swap(&mut self, i: usize, j: usize) {
            self.data.borrow_mut().swap(i, j);
        }
    }

    impl AdversaryTestingData {
        fn new(size: usize, maxcmp: usize) -> Self {
            let gas = size - 1;
            let data = vec![gas; size];
            AdversaryTestingData {
                data: RefCell::new(data),
                maxcmp,
                ncmp: Cell::new(0),
                nsolid: Cell::new(0),
                candidate: Cell::new(0),
                gas,
            }
        }
    }

    #[test]
    fn test_adversary() {
        // large enough to distinguish between O(n^2) and O(n*log(n))
        const SIZE: usize = 10_000;

        // the factor 4 was found by trial and error
        let maxcmp = SIZE * lg(SIZE) * 4;

        let mut data = AdversaryTestingData::new(SIZE, maxcmp);
        // This should degenerate to heapsort.
        data.sort();
        // Check data is fully populated and sorted.
        for (i, v) in data.data.borrow().iter().enumerate() {
            assert_eq!(*v, i, "dversary data not fully sorted");
        }
    }

    #[derive(Clone, Copy)]
    struct Pair {
        a: isize,
        b: isize,
    }

    impl core::fmt::Debug for Pair {
        fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
            write!(f, "{{{} {}}}", self.a, self.b)
        }
    }

    #[derive(Clone)]
    struct Pairs {
        data: Vec<Pair>,
    }

    impl Sort for Pairs {
        fn len(&self) -> usize {
            self.data.len()
        }

        fn less(&self, i: usize, j: usize) -> bool {
            self.data[i].a < self.data[j].a
        }

        fn swap(&mut self, i: usize, j: usize) {
            self.data.swap(i, j);
        }
    }

    impl Pairs {
        fn init_b(&mut self) {
            for (i, mut p) in self.data.iter_mut().enumerate() {
                p.b = i as isize;
            }
        }

        fn in_order(&self) -> bool {
            let (mut last_a, mut last_b) = (-1, 0);
            for i in 0..self.data.len() {
                if last_a != self.data[i].a {
                    last_a = self.data[i].a;
                    last_b = self.data[i].b;
                    continue;
                }
                if self.data[i].b <= last_b {
                    return false;
                }
                last_b = self.data[i].b;
            }
            true
        }
    }

    #[test]
    fn test_stability() {
        const N: usize = 100_000;
        const M: usize = 1000;
        let mut data = Pairs {
            data: vec![Pair { a: 0, b: 0 }; N],
        };

        // random distribution
        for i in 0..N {
            data.data[i].a = rand::thread_rng().gen_range(0..M as isize);
        }

        assert!(!data.is_sorted(), "terrible rand");

        data.init_b();
        data.sort_stable();
        assert!(data.is_sorted(), "Stable didn't sort {N} ints");
        assert!(data.in_order(), "Stable wasn't stable on {N} ints");

        // already sorted
        data.init_b();
        data.sort_stable();
        assert!(data.is_sorted(), "Stable shuffled sorted {N} ints (order)");

        assert!(
            data.in_order(),
            "Stable shuffled sorted {N} ints (stability)"
        );

        // sorted reversed
        let mut data = Pairs {
            data: vec![Pair { a: 0, b: 0 }; N],
        };
        for i in 0..N {
            data.data[i].a = (N - i) as isize;
        }
        data.init_b();
        data.sort_stable();
        assert!(data.is_sorted(), "Stable didn't sort {N} ints");
        assert!(data.in_order(), "Stable wasn't stable on {N} ints");
    }

    const COUNT_OPS_SIZES: &[usize] =
        &[100, 300, 1000, 3000, 10000, 30000, 100000, 300000, 1000000];

    fn count_ops<F>(f: F, name: &'static str)
    where
        F: Fn(&mut TestingData),
    {
        for n in COUNT_OPS_SIZES.iter() {
            let mut td = TestingData {
                desc: name.to_string(),
                data: vec![0; *n],
                max_swap: 2_147_483_647,
                ncmp: Cell::new(0),
                nswap: 0,
            };
            for i in 0..*n {
                td.data[i] = rand::thread_rng().gen_range(0..*n / 5);
            }
            f(&mut td);
            eprintln!(
                "{} {:8} elements: {:11} swap, {:10} less",
                name,
                n,
                td.nswap,
                td.ncmp.get()
            );
        }
    }

    #[test]
    fn test_count_stable_ops() {
        count_ops(|td| td.sort_stable(), "Stable");
    }

    #[test]
    fn test_count_sort_ops() {
        count_ops(|td| td.sort(), "Sort");
    }

    const DATA: &[isize] = &[-10, -5, 0, 1, 2, 3, 5, 7, 11, 100, 100, 100, 1000, 10000];

    fn tests() -> [Test; 21] {
        [
            Test {
                name: "1 1",
                n: 1,
                f: Box::new(|i| i >= 1),
                i: 1,
            },
            Test {
                name: "1 true",
                n: 1,
                f: Box::new(|_| true),
                i: 0,
            },
            Test {
                name: "1 false",
                n: 1,
                f: Box::new(|_| false),
                i: 1,
            },
            Test {
                name: "1e9 991",
                n: 1e9 as usize,
                f: Box::new(|i| i >= 991),
                i: 991,
            },
            Test {
                name: "1e9 true",
                n: 1e9 as usize,
                f: Box::new(|_| true),
                i: 0,
            },
            Test {
                name: "1e9 false",
                n: 1e9 as usize,
                f: Box::new(|_| false),
                i: 1e9 as usize,
            },
            Test {
                name: "data -20",
                n: DATA.len(),
                f: Box::new(f(DATA, -20)),
                i: 0,
            },
            Test {
                name: "data -10",
                n: DATA.len(),
                f: Box::new(f(DATA, -10)),
                i: 0,
            },
            Test {
                name: "data -9",
                n: DATA.len(),
                f: Box::new(f(DATA, -9)),
                i: 1,
            },
            Test {
                name: "data -6",
                n: DATA.len(),
                f: Box::new(f(DATA, -6)),
                i: 1,
            },
            Test {
                name: "data -5",
                n: DATA.len(),
                f: Box::new(f(DATA, -5)),
                i: 1,
            },
            Test {
                name: "data 3",
                n: DATA.len(),
                f: Box::new(f(DATA, 3)),
                i: 5,
            },
            Test {
                name: "data 11",
                n: DATA.len(),
                f: Box::new(f(DATA, 11)),
                i: 8,
            },
            Test {
                name: "data 99",
                n: DATA.len(),
                f: Box::new(f(DATA, 99)),
                i: 9,
            },
            Test {
                name: "data 100",
                n: DATA.len(),
                f: Box::new(f(DATA, 100)),
                i: 9,
            },
            Test {
                name: "data 101",
                n: DATA.len(),
                f: Box::new(f(DATA, 101)),
                i: 12,
            },
            Test {
                name: "data 10000",
                n: DATA.len(),
                f: Box::new(f(DATA, 10000)),
                i: 13,
            },
            Test {
                name: "data 10001",
                n: DATA.len(),
                f: Box::new(f(DATA, 10001)),
                i: 14,
            },
            Test {
                name: "descending a",
                n: 7,
                f: Box::new(|i| [99, 99, 59, 42, 7, 0, -1, -1][i] <= 7),
                i: 4,
            },
            Test {
                name: "descending 7",
                n: 1e9 as usize,
                f: Box::new(|i| 1e9 as usize - i <= 7),
                i: 1e9 as usize - 7,
            },
            Test {
                name: "overflow",
                n: 2e9 as usize,
                f: Box::new(|_| false),
                i: 2e9 as usize,
            },
        ]
    }

    fn f<'a>(a: &'a [isize], x: isize) -> impl FnMut(usize) -> bool + 'a {
        move |i| a[i] >= x
    }

    struct Test {
        name: &'static str,
        n: usize,
        f: Box<dyn FnMut(usize) -> bool>,
        i: usize,
    }

    #[test]
    fn test_search() {
        for mut t in tests() {
            let i = search(t.n, &mut t.f);
            assert_eq!(i, t.i, "{}: expected index {}; got {}", t.name, t.i, i);
        }
    }

    #[inline]
    const fn log2(x: usize) -> usize {
        let mut n = 0;
        let mut p = 1;
        while p < x {
            n += 1;
            p += p;
        }
        n
    }

    #[test]
    fn test_search_efficiency() {
        let mut n = 100;
        let mut step = 1;

        for _ in 2..10 {
            let max = log2(n);
            for x in (0..n).step_by(step) {
                let mut count = 0;
                let i = search(n, move |i| {
                    count += 1;
                    i >= x
                });
                assert_eq!(i, x, "n = {}: expected index {}; got {}", n, x, i);
                assert!(
                    count <= max,
                    "n = {}, x = {}: expected <= {} calls; got {}",
                    n,
                    x,
                    max,
                    count
                );
            }

            n *= 10;
            step *= 10;
        }
    }

    #[test]
    fn test_search_exhaustive() {
        for n in 0..=100 {
            for x in 0..=n {
                let i = search(n, move |i| i >= x);
                assert_eq!(i, x, "search({}, {}) = {}", n, x, i);
            }
        }
    }
}