mes/lib/stdlib/qsort.c

88 lines
2.1 KiB
C
Raw Normal View History

2022-10-25 07:51:32 +01:00
/* -*-comment-start: "//";comment-end:""-*-
* GNU Mes --- Maxwell Equations of Software
* Copyright © 2017,2018 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
* Copyright © 2021 Paul Dersey <pdersey@gmail.com>
2022-10-25 07:51:32 +01:00
*
* This file is part of GNU Mes.
*
* GNU Mes is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or (at
* your option) any later version.
*
* GNU Mes 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with GNU Mes. If not, see <http://www.gnu.org/licenses/>.
*/
mescc: Mes C Library: Explode libc+tcc.c. * include/libmes.h: Add declarations. * include/string.h: Likewise. * lib/ctype/islower.c: New file, explode from lib/libc+tcc.c. * lib/ctype/isupper.c: Likewise. * lib/ctype/tolower.c: Likewise. * lib/ctype/toupper.c: Likewise. * lib/mes/search-path.c: Likewise. * lib/posix/execvp.c: Likewise. * lib/stdio/fclose.c: Likewise. * lib/stdio/fdopen.c: Likewise. * lib/stdio/ferror.c: Likewise. * lib/stdio/fflush.c: Likewise. * lib/stdio/fopen.c: Likewise. * lib/stdio/fprintf.c: Likewise. * lib/stdio/fread.c: Likewise. * lib/stdio/fseek.c: Likewise. * lib/stdio/ftell.c: Likewise. * lib/stdio/fwrite.c: Likewise. * lib/stdio/printf.c: Likewise. * lib/stdio/remove.c: Likewise. * lib/stdio/snprintf.c: Likewise. * lib/stdio/sprintf.c: Likewise. * lib/stdio/sscanf.c: Likewise. * lib/stdio/vfprintf.c: Likewise. * lib/stdio/vprintf.c: Likewise. * lib/stdio/vsnprintf.c: Likewise. * lib/stdio/vsprintf.c: Likewise. * lib/stdio/vsscanf.c: Likewise. * lib/stdlib/calloc.c: Likewise. * lib/stdlib/qsort.c: Likewise. * lib/stdlib/strtof.c: Likewise. * lib/stdlib/strtol.c: Likewise. * lib/stdlib/strtold.c: Likewise. * lib/stdlib/strtoll.c: Likewise. * lib/stdlib/strtoul.c: Likewise. * lib/stdlib/strtoull.c: Likewise. * lib/string/memcmp.c: Likewise. * lib/string/memmem.c: Likewise. * lib/string/memmove.c: Likewise. * lib/string/memset.c: Likewise. * lib/string/strcat.c: Likewise. * lib/string/strchr.c: Likewise. * lib/string/strlwr.c: Likewise. * lib/string/strncpy.c: Likewise. * lib/string/strrchr.c: Likewise. * lib/string/strstr.c: Likewise. * lib/string/strupr.c: Likewise. * lib/stub/gettimeofday.c: Likewise. * lib/stub/ldexp.c: Likewise. * lib/stub/localtime.c: Likewise. * lib/stub/mprotect.c: Likewise. * lib/stub/sigaction.c: Likewise. * lib/stub/sigemptyset.c: Likewise. * lib/stub/strtod.c: Likewise. * lib/stub/time.c: Likewise. * lib/libc+tcc.c: Include explodings.
2018-08-22 06:23:27 +01:00
2022-10-25 13:43:30 +01:00
#include <assert.h>
mescc: Mes C Library: Explode libc+tcc.c. * include/libmes.h: Add declarations. * include/string.h: Likewise. * lib/ctype/islower.c: New file, explode from lib/libc+tcc.c. * lib/ctype/isupper.c: Likewise. * lib/ctype/tolower.c: Likewise. * lib/ctype/toupper.c: Likewise. * lib/mes/search-path.c: Likewise. * lib/posix/execvp.c: Likewise. * lib/stdio/fclose.c: Likewise. * lib/stdio/fdopen.c: Likewise. * lib/stdio/ferror.c: Likewise. * lib/stdio/fflush.c: Likewise. * lib/stdio/fopen.c: Likewise. * lib/stdio/fprintf.c: Likewise. * lib/stdio/fread.c: Likewise. * lib/stdio/fseek.c: Likewise. * lib/stdio/ftell.c: Likewise. * lib/stdio/fwrite.c: Likewise. * lib/stdio/printf.c: Likewise. * lib/stdio/remove.c: Likewise. * lib/stdio/snprintf.c: Likewise. * lib/stdio/sprintf.c: Likewise. * lib/stdio/sscanf.c: Likewise. * lib/stdio/vfprintf.c: Likewise. * lib/stdio/vprintf.c: Likewise. * lib/stdio/vsnprintf.c: Likewise. * lib/stdio/vsprintf.c: Likewise. * lib/stdio/vsscanf.c: Likewise. * lib/stdlib/calloc.c: Likewise. * lib/stdlib/qsort.c: Likewise. * lib/stdlib/strtof.c: Likewise. * lib/stdlib/strtol.c: Likewise. * lib/stdlib/strtold.c: Likewise. * lib/stdlib/strtoll.c: Likewise. * lib/stdlib/strtoul.c: Likewise. * lib/stdlib/strtoull.c: Likewise. * lib/string/memcmp.c: Likewise. * lib/string/memmem.c: Likewise. * lib/string/memmove.c: Likewise. * lib/string/memset.c: Likewise. * lib/string/strcat.c: Likewise. * lib/string/strchr.c: Likewise. * lib/string/strlwr.c: Likewise. * lib/string/strncpy.c: Likewise. * lib/string/strrchr.c: Likewise. * lib/string/strstr.c: Likewise. * lib/string/strupr.c: Likewise. * lib/stub/gettimeofday.c: Likewise. * lib/stub/ldexp.c: Likewise. * lib/stub/localtime.c: Likewise. * lib/stub/mprotect.c: Likewise. * lib/stub/sigaction.c: Likewise. * lib/stub/sigemptyset.c: Likewise. * lib/stub/strtod.c: Likewise. * lib/stub/time.c: Likewise. * lib/libc+tcc.c: Include explodings.
2018-08-22 06:23:27 +01:00
#include <stdlib.h>
2022-10-25 08:12:22 +01:00
#include <string.h>
2022-10-25 13:43:30 +01:00
#if 1
static void
qswap (char *a, char *b, size_t size)
2022-10-24 21:53:12 +01:00
{
2022-10-25 13:43:30 +01:00
while (size-- > 0);
{
2022-10-25 13:43:30 +01:00
char tmp = *a;
*a++ = *b;
*b++ = tmp;
}
2022-10-25 08:26:27 +01:00
}
#else
2022-10-25 13:43:30 +01:00
static void
2022-10-25 08:26:27 +01:00
qswap (void *a, void *b, int size)
{
2022-10-25 13:43:30 +01:00
assert (a != b);
2022-10-25 08:26:27 +01:00
char buffer[size];
memcpy (buffer, a, size);
memcpy (a, b, size);
memcpy (b, buffer, size);
}
#endif
2022-10-25 13:43:30 +01:00
static size_t
qpart (char *base, size_t count, size_t size,
2022-10-25 08:26:27 +01:00
int (*compare) (void const *, void const *))
{
void *p1 = base + count * size;
size_t i = 0;
for (size_t j = 0; j < count; j++)
2022-10-25 08:26:27 +01:00
{
char *p2 = base + j * size;
2022-10-25 13:43:30 +01:00
int c = p1 == p2 ? 0 : compare (p2, p1);
if (c == 0)
i++;
2022-10-25 13:43:30 +01:00
else if (c < 0)
{
char *p1 = base + i * size;
qswap (p1, p2, size);
i++;
2022-10-24 21:53:12 +01:00
}
2022-10-25 08:26:27 +01:00
}
char *p2 = base + i * size;
if (p1 != p2 && compare (p1, p2) < 0)
qswap (p1, p2, size);
return i;
2022-10-25 08:26:27 +01:00
}
2022-10-25 08:12:22 +01:00
2022-10-25 08:26:27 +01:00
void
qsort (void *base, size_t count, size_t size,
int (*compare) (void const *, void const *))
{
if (count <= 1)
return;
size_t p = qpart (base, count - 1, size, compare);
qsort (base, p, size, compare);
char *pbase = base;
char *p1 = pbase + p * size;
size_t c1 = count - p;
qsort (p1, c1, size, compare);
2022-10-25 07:51:32 +01:00
}