mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
2b72262b4f
I hereby relicense all my work on Sortix under the ISC license as below. All Sortix contributions by other people are already under this license, are not substantial enough to be copyrightable, or have been removed. All imported code from other projects is compatible with this license. All GPL licensed code from other projects had previously been removed. Copyright 2011-2016 Jonas 'Sortie' Termansen and contributors. Permission to use, copy, modify, and distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
99 lines
3 KiB
C
99 lines
3 KiB
C
/*
|
|
* Copyright (c) 2012, 2014 Jonas 'Sortie' Termansen.
|
|
*
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
* copyright notice and this permission notice appear in all copies.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
*
|
|
* stdlib/qsort_r.c
|
|
* Sort an array.
|
|
*/
|
|
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
static void memswap(unsigned char* a, unsigned char* b, size_t size)
|
|
{
|
|
unsigned char tmp;
|
|
for ( size_t i = 0; i < size; i++ )
|
|
{
|
|
tmp = a[i];
|
|
a[i] = b[i];
|
|
b[i] = tmp;
|
|
}
|
|
}
|
|
|
|
static
|
|
unsigned char* array_index(unsigned char* base,
|
|
size_t element_size,
|
|
size_t index)
|
|
{
|
|
return base + element_size * index;
|
|
}
|
|
|
|
static
|
|
size_t partition(unsigned char* base,
|
|
size_t element_size,
|
|
size_t num_elements,
|
|
size_t pivot_index,
|
|
int (*compare)(const void*, const void*, void*),
|
|
void* arg)
|
|
{
|
|
if ( pivot_index != num_elements - 1 )
|
|
{
|
|
unsigned char* pivot = array_index(base, element_size, pivot_index);
|
|
unsigned char* other = array_index(base, element_size, num_elements - 1);
|
|
memswap(pivot, other, element_size);
|
|
pivot_index = num_elements - 1;
|
|
}
|
|
|
|
size_t store_index = 0;
|
|
for ( size_t i = 0; i < num_elements - 1; i++ )
|
|
{
|
|
unsigned char* pivot = array_index(base, element_size, pivot_index);
|
|
unsigned char* value = array_index(base, element_size, i);
|
|
if ( compare(value, pivot, arg) <= 0 )
|
|
{
|
|
unsigned char* other = array_index(base, element_size, store_index);
|
|
if ( value != other )
|
|
memswap(value, other, element_size);
|
|
store_index++;
|
|
}
|
|
}
|
|
|
|
unsigned char* pivot = array_index(base, element_size, pivot_index);
|
|
unsigned char* value = array_index(base, element_size, store_index);
|
|
memswap(pivot, value, element_size);
|
|
|
|
return store_index;
|
|
}
|
|
|
|
void qsort_r(void* base_ptr,
|
|
size_t num_elements,
|
|
size_t element_size,
|
|
int (*compare)(const void*, const void*, void*),
|
|
void* arg)
|
|
{
|
|
unsigned char* base = (unsigned char*) base_ptr;
|
|
|
|
if ( !element_size || num_elements < 2 )
|
|
return;
|
|
|
|
size_t pivot_index = num_elements / 2;
|
|
pivot_index = partition(base, element_size, num_elements, pivot_index, compare, arg);
|
|
|
|
if ( 2 <= pivot_index )
|
|
qsort_r(base, pivot_index, element_size, compare, arg);
|
|
|
|
if ( 2 <= num_elements - (pivot_index + 1) )
|
|
qsort_r(array_index(base, element_size, pivot_index + 1),
|
|
num_elements - (pivot_index + 1), element_size, compare, arg);
|
|
}
|