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
|
/*
* sort.c - a 'stable' mergesort with:
* minimum malloc overhead
* minimum memcpy overhead
* no need for a size parm
*
* Copyright © 2025 Jim Warner <james.warner@comcast.net>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <stdlib.h>
#include <string.h>
/*
* mergesort with callback and user parameter (like qsort_r)
* base: pointer to the first element
* nmemb: number of elements
* compar: comparator function (returns <0, 0, >0)
* arg: extra user parameter passed to comparator
*
* but, we return 1 on success or 0 on malloc failure! |
* plus we issue only a single malloc each invocation! |
* plus we issue only a single memcpy each invocation! |
*
* Note:
* This guy deals EXCLUSIVELY with sorting pointers. |
* As a result of this, we can move them around much |
* more efficiently than thousands of memcpy() calls |
* who then moves a whopping 8 bytes with each call. |
*/
int mergesort_r (
void *base,
size_t nmemb,
int (*compar)(const void *, const void *, void *),
void *arg)
{
void *aux;
char **bas, **buf, **p;
size_t top_start, bottom_start, bottom_end, half_depth, t, b;
if (nmemb < 2) return 1;
// allocate one auxiliary buffer for the entire sort
if (!(aux = malloc(nmemb * sizeof(void *))))
return 0;
bas = base;
p = buf = aux;
// bottom-up merge sort
for (half_depth = 1; half_depth < nmemb; half_depth *= 2) {
for (top_start = 0; top_start < nmemb; top_start += 2 * half_depth ) {
bottom_start = (top_start + half_depth < nmemb) ? top_start + half_depth : nmemb;
bottom_end = (top_start + (2 * half_depth ) < nmemb) ? top_start + (2 * half_depth ) : nmemb;
t = top_start;
b = bottom_start;
// merge two sorted halfs into buffer
while (t < bottom_start && b < bottom_end) {
if (compar(bas + t, bas + b, arg) <= 0)
*p = *(bas + t++);
else
*p = *(bas + b++);
p++;
}
// copy remaining top stuff
while (t < bottom_start)
*(p++) = *(bas + t++);
// copy remaining bottom stuff
while (b < bottom_end)
*(p++) = *(bas + b++);
}
// swap roles of bas and buf
p = bas;
bas = buf;
buf = p;
}
// if sorted data is in aux, copy back to base
if (bas != (char **)base)
memcpy(base, bas, nmemb * sizeof (void *));
free(aux);
return 1;
} // end: mergesort_r
|