cosmopolitan/libc/runtime/carsort1000.c

62 lines
2.9 KiB
C
Raw Normal View History

2020-06-15 14:18:57 +00:00
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│
vi: set net ft=c ts=2 sts=2 sw=2 fenc=utf-8 :vi
Copyright 2020 Justine Alexandra Roberts Tunney
This program 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; version 2 of the License.
This program 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 this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301 USA
*/
#include "libc/runtime/carsort.h"
2020-06-15 14:18:57 +00:00
#include "libc/str/str.h"
static textstartup size_t HeapSortMax(size_t n, int32_t A[n][2], long i, long j,
long k) {
if (j < n && A[j][0] > A[i][0]) i = j;
if (k < n && A[k][0] > A[i][0]) i = k;
return i;
2020-06-15 14:18:57 +00:00
}
static textstartup void HeapSortDown(size_t n, int32_t A[n][2], long i) {
size_t j;
2020-06-15 14:18:57 +00:00
int32_t t[2];
for (;;) {
j = HeapSortMax(n, A, i, 2 * i + 1, 2 * i + 2);
2020-06-15 14:18:57 +00:00
if (j == i) break;
memcpy(t, A[i], sizeof(t));
memcpy(A[i], A[j], sizeof(t));
memcpy(A[j], t, sizeof(t));
i = j;
}
}
/**
* Sorts int32 key-value arrays of nontrivial size.
2020-06-15 14:18:57 +00:00
*
* @see test/libc/alg/carsort_test.c
* @see carsort100() if smaller
2020-06-15 14:18:57 +00:00
*/
textstartup void carsort1000(size_t n, int32_t A[n][2]) {
size_t i;
2020-06-15 14:18:57 +00:00
int32_t t[2];
for (i = ((n - 2) / 2) + 1; i > 0; i--) {
HeapSortDown(n, A, i - 1);
2020-06-15 14:18:57 +00:00
}
for (i = 0; i < n; i++) {
memcpy(t, A[n - i - 1], sizeof(t));
memcpy(A[n - i - 1], A[0], sizeof(t));
memcpy(A[0], t, sizeof(t));
HeapSortDown(n - i - 1, A, 0);
2020-06-15 14:18:57 +00:00
}
}