summaryrefslogtreecommitdiffstats
path: root/ml/dlib/dlib/sort.h
blob: c798372f398dcf9e46eb372a60492c793deb5b77 (plain)
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
// Copyright (C) 2005  Davis E. King (davis@dlib.net)
// License: Boost Software License   See LICENSE.txt for the full license.
#ifndef DLIB_SORt_
#define DLIB_SORt_

#include "algs.h"
#include <functional>

namespace dlib
{

// ----------------------------------------------------------------------------------------

    template <
        typename T,
        typename compare
        >
    inline void qsort_array (
        T& array,
        unsigned long left,
        unsigned long right,
        const compare& comp 
    );
    /*!
        requires
            - T implements operator[]                                 
            - the items in array must be comparable by comp where comp is a function
              object with the same syntax as std::less<>
            - the items in array must be swappable by a global swap()   
            - left and right are within the bounds of array
              i.e. array[left] and array[right] are valid elements
            - left <= right
        ensures
            - for all elements in #array between and including left and right the 
              ith element is < the i+1 element
            - sorts using a quick sort algorithm
    !*/ 

// ----------------------------------------------------------------------------------------

    template <
        typename T,
        typename compare
        >
    void hsort_array (
        T& array,
        unsigned long left,
        unsigned long right,
        const compare& comp 
    );
    /*!
        requires
            - T implements operator[]                                 
            - the items in array must be comparable by comp where comp is a function
              object with the same syntax as std::less<>
            - the items in array must be swappable by a global swap()   
            - left and right are within the bounds of array
              i.e. array[left] and array[right] are valid elements
            - left <= right
        ensures
            - for all elements in #array between and including left and right the 
              ith element is < the i+1 element
            - sorts using a heapsort algorithm
    !*/ 

// ----------------------------------------------------------------------------------------

    template <
        typename T,
        typename compare
        >
    void isort_array (
        T& array,
        unsigned long left,
        unsigned long right,
        const compare& comp 
    );
    /*!
        requires
            - T implements operator[]                                 
            - the items in array must be comparable by comp where comp is a function
              object with the same syntax as std::less<>
            - the items in array must be swappable by a global swap()   
            - left and right are within the bounds of array
              i.e. array[left] and array[right] are valid elements
            - left <= right
        ensures
            - for all elements in #array between and including left and right the 
              ith element is < the i+1 element
            - sorts using an insertion sort algorithm
    !*/

// ----------------------------------------------------------------------------------------

    template <
        typename T
        >
    inline void qsort_array (
        T& array,
        unsigned long left,
        unsigned long right
    ); 
    /*!
        requires
            - T implements operator[]                                 
            - the items in array must be comparable by std::less         
            - the items in array must be swappable by a global swap()   
            - left and right are within the bounds of array
              i.e. array[left] and array[right] are valid elements
            - left <= right
        ensures
            - for all elements in #array between and including left and right the 
              ith element is < the i+1 element
            - sorts using a quick sort algorithm
    !*/ 

// ----------------------------------------------------------------------------------------

    template <
        typename T
        >
    void hsort_array (
        T& array,
        unsigned long left,
        unsigned long right
    );
    /*!
        requires
            - T implements operator[]                                 
            - the items in array must be comparable by std::less         
            - the items in array must be swappable by a global swap()   
            - left and right are within the bounds of array
              i.e. array[left] and array[right] are valid elements
            - left <= right
        ensures
            - for all elements in #array between and including left and right the 
              ith element is < the i+1 element
            - sorts using a heapsort algorithm
    !*/ 

// ----------------------------------------------------------------------------------------

    template <
        typename T
        >
    void isort_array (
        T& array,
        unsigned long left,
        unsigned long right
    ); 
    /*!
        requires
            - T implements operator[]                                 
            - the items in array must be comparable by std::less      
            - the items in array must be swappable by a global swap()   
            - left and right are within the bounds of array
              i.e. array[left] and array[right] are valid elements
            - left <= right
        ensures
            - for all elements in #array between and including left and right the 
              ith element is < the i+1 element
            - sorts using an insertion sort algorithm
    !*/

// ----------------------------------------------------------------------------------------
// ----------------------------------------------------------------------------------------
//                            IMPLEMENTATION DETAILS
// ----------------------------------------------------------------------------------------
// ----------------------------------------------------------------------------------------

    namespace sort_helpers
    {
        template <typename T>
        inline const std::less<T> comp (const T&)
        {
            return std::less<T>();
        }

        template <
            typename T,
            typename Y,
            typename compare
            >
        inline unsigned long qsort_partition (
            T& array,
            Y& pivot,
            const unsigned long left,
            const unsigned long right,
            const compare& comp
        )
        /*!
            requires
                - &pivot == &array[right]
                - T implements operator[]                             
                - the items in array must be comparable by comp     
                - left and right are within the bounts of the array
                - left < right
            ensures
                - returns a number called partition_element such that:
                    - left <= partition_element <= right                              
                    - all elements in #array < #array[partition_element] have 
                    indices >= left and < partition_element                         
                    - all elements in #array > #array[partition_element] have 
                    indices > partition_element and <= right
        !*/
        {
            DLIB_ASSERT (&pivot == &array[right] && left < right,
                    "\tunsigned long qsort_partition()"
                    << "\n\t&pivot:        " << &pivot
                    << "\n\t&array[right]: " << &array[right]
                    << "\n\tleft:          " << left
                    << "\n\tright:         " << right );

            exchange(array[(right-left)/2 +left],pivot);

            unsigned long i = left;
            for (unsigned long j = left; j < right; ++j)
            {
                if (comp(array[j] , pivot))
                {
                    swap(array[i],array[j]);
                    ++i;
                }
            }
            exchange(array[i],pivot);
            
            return i;
        }

// ----------------------------------------------------------------------------------------

        template <
            typename T,
            typename compare
            >
        void qsort_array_main (
            T& array,
            const unsigned long left,
            const unsigned long right,
            unsigned long depth_check,
            const compare& comp
        )
        /*!
            requires
                - T implements operator[]                                 
                - the items in array must be comparable by comp         
                - the items in array must be swappable by a global swap()   
                - left and right are within the bounds of array
                  i.e. array[left] and array[right] are valid elements
            ensures
                - for all elements in #array between and including left and right the 
                  ith element is < the i+1 element
                - will only recurse about as deep as log(depth_check) calls
                - sorts using a quick sort algorithm
        !*/ 
        {
            if ( left < right)
            {
                if (right-left < 30 || depth_check == 0)
                {
                    hsort_array(array,left,right,comp);
                }
                else
                {
                    // The idea here is to only let quick sort go about log(N)
                    // calls deep before it kicks into something else.
                    depth_check >>= 1;
                    depth_check += (depth_check>>4);

                    unsigned long partition_element = 
                        qsort_partition(array,array[right],left,right,comp);
                    
                    if (partition_element > 0)
                        qsort_array_main(array,left,partition_element-1,depth_check,comp);
                    qsort_array_main(array,partition_element+1,right,depth_check,comp);
                }
            }
        }

// ----------------------------------------------------------------------------------------

        template <
            typename T,
            typename compare
            >
        void heapify (
            T& array,
            const unsigned long start,
            const unsigned long end,
            unsigned long i,
            const compare& comp
        )
        /*!
            requires
                - T implements operator[]                                 
                - the items in array must be comparable by comp        
                - the items in array must be swappable by a global swap()   
                - start, end, and i are within the bounds of array
                  i.e. array[start], array[end], and array[i] are valid elements
                - start <= i <= end
                - array[i/2] is a max heap
                - array[i/2+1] is a max heap
                - start and end specify the range of the array we are working with.
            ensures
                - array[i] is now a max heap
        !*/
        {
            DLIB_ASSERT (start <= i && i <= end,
                    "\tvoid heapify()"
                    << "\n\tstart:   " << start 
                    << "\n\tend:     " << end 
                    << "\n\ti:       " << i );

            bool keep_going = true;            
            unsigned long left;
            unsigned long right;   
            unsigned long largest; 
            while (keep_going)
            {
                keep_going = false;
                left = (i<<1)+1-start;
                right = left+1;

                if (left <= end && comp(array[i] , array[left]))
                    largest = left;
                else
                    largest = i;

                if (right <= end && comp(array[largest] , array[right]))
                    largest = right;

                if (largest != i)
                {
                    exchange(array[i],array[largest]);
                    i = largest;
                    keep_going = true;
                }
            }
        }

// ----------------------------------------------------------------------------------------
    }
// ----------------------------------------------------------------------------------------


    template <
        typename T
        >
    inline void qsort_array (
        T& array,
        unsigned long left,
        unsigned long right
    ) 
    {
        using namespace sort_helpers;
        qsort_array(array,left,right,comp(array[left]));
    }

// ----------------------------------------------------------------------------------------

    template <
        typename T
        >
    void hsort_array (
        T& array,
        unsigned long left,
        unsigned long right
    )
    {
        using namespace sort_helpers;
        hsort_array(array,left,right,comp(array[left]));
    }

// ----------------------------------------------------------------------------------------

    template <
        typename T
        >
    void isort_array (
        T& array,
        unsigned long left,
        unsigned long right
    ) 
    {
        using namespace sort_helpers;
        isort_array(array,left,right,comp(array[left]));
    }

// ----------------------------------------------------------------------------------------

    template <
        typename T,
        typename compare
        >
    void isort_array (
        T& array,
        const unsigned long left,
        const unsigned long right,
        const compare& comp
    )
    {
        DLIB_ASSERT (left <= right,
                "\tvoid isort_array()"
                << "\n\tleft:          " << left
                << "\n\tright:         " << right );
        using namespace sort_helpers;

        unsigned long pos;
        for (unsigned long i = left+1; i <= right; ++i)
        {
            // everything from left to i-1 is sorted.
            pos = i;
            for (unsigned long j = i-1; comp(array[pos] , array[j]); --j)
            {
                exchange(array[pos],array[j]);
                pos = j;
                
                if (j == left)
                    break;
            }
        }
    }

// ----------------------------------------------------------------------------------------

    template <
        typename T,
        typename compare
        >
    void qsort_array (
        T& array,
        const unsigned long left,
        const unsigned long right,
        const compare& comp
    )
    {      
        DLIB_ASSERT (left <= right,
                "\tvoid qsort_array()"
                << "\n\tleft:          " << left
                << "\n\tright:         " << right );

        sort_helpers::qsort_array_main(array,left,right,right-left,comp);
    }

// ----------------------------------------------------------------------------------------
    
    template <
        typename T,
        typename compare
        >
    void hsort_array (
        T& array,
        const unsigned long left,
        const unsigned long right,
        const compare& comp
    )
    {
        DLIB_ASSERT (left <= right,
                "\tvoid hsort_array()"
                << "\n\tleft:          " << left
                << "\n\tright:         " << right );

        if (right-left < 30)
        {
            isort_array(array,left,right,comp);
            return;
        }

        // turn array into a max heap
        for (unsigned long i = left+((right-left)>>1);; --i)
        {
            sort_helpers::heapify(array,left,right,i,comp);
            if (i == left)
                break;
        }

        // now sort the array
        for (unsigned long i = right; i > left;)
        {
            exchange(array[i],array[left]);
            sort_helpers::heapify(array,left,--i,left,comp);
        }
    }

// ----------------------------------------------------------------------------------------

}

#endif // DLIB_SORt_