123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331 |
- /* NUMsort.cpp
- *
- * Copyright (C) 1993-2012 David Weenink
- *
- * This code 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 2 of the License, or (at
- * your option) any later version.
- *
- * This code 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 work. If not, see <http://www.gnu.org/licenses/>.
- */
- /*
- djmw 20030121 Initial version
- djmw 20030627 Removed bug in MACRO_NUMindex
- djmw 20120305 Latest modification
- */
- #include "NUM2.h"
- #include "melder.h"
- /*
- NUMsort2 uses heapsort to sort the second array in parallel with the first one.
- Algorithm follows p. 145 and 642 in:
- Donald E. Knuth (1998): The art of computer programming. Third edition. Vol. 3: sorting and searching.
- Boston: Addison-Wesley, printed may 2002.
- Modification: there is no distinction between record and key and
- Floyd's optimization (page 642) is used.
- */
- void NUMrankColumns (double **m, integer rb, integer re, integer cb, integer ce) {
- integer nr = re - rb + 1;
- autoNUMvector <double> v (1, nr);
- autoNUMvector <integer> index (1, nr);
- for (integer j = cb; j <= ce; j ++) {
- for (integer i = 1; i <= nr; i ++) {
- v [i] = m [rb + i - 1] [j];
- }
- for (integer i = 1; i <= nr; i ++) {
- index [i] = i;
- }
- NUMsort2 (nr, v.peek(), index.peek());
- NUMrank (nr, v.peek());
- for (integer i = 1; i <= nr; i ++) {
- m [rb + index [i] - 1] [j] = v [i];
- }
- }
- }
- template <class T>
- void NUMindexx (const T a[], integer n, integer index[], int (*compare) (void *, void *)) {
- integer ii, imin;
- T min;
- for (integer j = 1; j <= n; j ++) {
- index [j] = j;
- }
- if (n < 2) return; // Already sorted
- if (n == 2) {
- if (COMPARELT (a [2], a [1])) {
- index [1] = 2; index [2] = 1;
- }
- return;
- }
- if (n <= 12) {
- for (integer i = 1; i < n; i ++) {
- imin = i;
- min = a [index [imin]];
- for (integer j = i + 1; j <= n; j ++) {
- if (COMPARELT (a[index [j]], min)) {
- imin = j;
- min = a [index [j]];
- }
- }
- ii = index [imin]; index [imin] = index [i]; index [i] = ii;
- }
- return;
- }
- // H1
- integer l = n / 2 + 1, r = n;
- for (;;) { // H2
- integer k, i;
- if (l > 1) {
- l --;
- k = index [l];
- } else { // l == 1
- k = index [r];
- index [r] = index [1];
- r --;
- if (r == 1) {
- index [1] = k; break;
- }
- }
- // H3
- integer j = l;
- for (;;) {
- // H4
- i = j;
- j *= 2;
- if (j > r) {
- break;
- }
- if (j < r && COMPARELT (a [index [j]], a [index [j + 1]])) {
- j++; // H5
- }
- index [i] = index [j]; // H7
- }
- for (;;) { // H8'
- j = i;
- i = j >> 1;
- // H9'
- if (j == l || COMPARELT (a [k], a [index [i]])) {
- index [j] = k; break;
- }
- index[j] = index[i];
- }
- }
- }
- #define MACRO_NUMindex(TYPE,n) \
- {\
- integer l, r, j, i, ii, k, imin; \
- TYPE min; \
- autoINTVEC index = INTVECraw (n); \
- for (j = 1; j <= n; j ++) index[j] = j; \
- if (n < 2) return index; /* Already sorted. */ \
- if (n == 2) \
- { \
- if (COMPARELT (a [2], a [1])) \
- {\
- index [1] = 2; index [2] = 1; \
- } \
- return index; \
- } \
- if (n <= 12) \
- { \
- for (i = 1; i < n; i ++) \
- { \
- imin = i; \
- min = a [index [imin]]; \
- for (j = i + 1; j <= n; j ++) \
- {\
- if (COMPARELT (a [index [j]], min))\
- { \
- imin = j; \
- min = a [index [j]]; \
- } \
- } \
- ii = index [imin]; index [imin] = index [i]; index [i] = ii; \
- } \
- return index; \
- } \
- /* H1 */\
- l = n / 2 + 1; \
- r = n; \
- for (;;) /* H2 */\
- { \
- if (l > 1) \
- { \
- l --; \
- k = index[l]; \
- } \
- else /* l == 1 */ \
- { \
- k = index [r]; \
- index [r] = index [1]; \
- r --; \
- if (r == 1) \
- { \
- index [1] = k; break; \
- } \
- } \
- /* H3 */ \
- j = l; \
- for (;;) \
- { \
- /* H4 */ \
- i = j; \
- j *= 2; \
- if (j > r) break; \
- if (j < r && COMPARELT (a [index [j]], a [index [j + 1]])) j ++; /* H5 */\
- index [i] = index [j]; /* H7 */\
- } \
- for (;;) /*H8' */\
- {\
- j = i; \
- i = j >> 1; \
- /* H9' */ \
- if (j == l || COMPARELT (a[k], a[index[i]])) \
- { \
- index [j] = k; break; \
- } \
- index [j] = index [i]; \
- }\
- } \
- return index; \
- }
- #define COMPARELT(x,y) ((x) < (y))
- autoINTVEC NUMindexx (constVEC a)
- MACRO_NUMindex (double, a.size)
- //void NUMindexx (const double a[], integer n, integer index[])
- //MACRO_NUMindex (double, n)
- #undef COMPARELT
- #define COMPARELT(x,y) (Melder_cmp (x,y) < 0)
- //void NUMindexx_s (char32 **a, integer n, integer index[])
- autoINTVEC NUMindexx_s (constSTRVEC a)
- MACRO_NUMindex (const char32_t *, a.size)
- #undef COMPARELT
- #undef MACRO_INDEXX
- template <class T>
- void NUMsort1 (integer n, T a[]) {
- /*
- Knuth's heapsort algorithm (vol. 3, page 145),
- modified with Floyd's optimization (vol. 3, page 642).
- */
- T min;
- if (n < 2) return; // Already sorted.
- /*
- This n<2 step is absent from Press et al.'s implementation,
- which will therefore not terminate on if(--ir==1).
- Knuth's initial assumption is now fulfilled: n >= 2.
- */
- if (n == 2) {
- if (a [1] > a [2]) {
- min = a [2]; a [2] = a [1]; a [1] = min;
- }
- return;
- }
- if (n <= 12) {
- integer imin;
- for (integer i = 1; i < n; i ++) {
- min = a [i];
- imin = i;
- for (integer j = i + 1; j <= n; j ++) {
- if (a [j] < min) {
- min = a [j];
- imin = j;
- }
- }
- a [imin] = a [i];
- a [i] = min;
- }
- return;
- }
- // H1
- integer l = (n >> 1) + 1, r = n;
- for (;;) { // H2
- T ak;
- if (l > 1) {
- l --;
- ak = a [l];
- } else { // l == 1
- ak = a [r];
- a [r] = a [1];
- r --;
- if (r == 1) {
- a [1] = ak; return;
- }
- }
- // H3
- integer i, j = l;
- for (;;) { // H4
- i = j;
- j = j << 1;
- if (j > r) {
- break;
- }
- if (j < r && a [j] < a [j + 1]) {
- j ++; // H5
- }
- // if (k >= a[j]) break;
- a [i] = a [j]; // H7
- }
- // a[i] = k; H8
- for (;;) { // H8'
- j = i;
- i = j >> 1;
- // H9'
- if (j == l || ak <= a [i]) {
- a [j] = ak; break;
- }
- a [j] = a [i];
- }
- }
- }
- void NUMsort3 (VEC a, INTVEC iv1, INTVEC iv2, bool descending) {
- Melder_assert (a.size == iv1.size && a.size == iv2.size);
-
- if (a.size == 1) {
- return;
- }
-
- autoVEC atmp = VECcopy (a);
- autoINTVEC index = NUMindexx (atmp.get());
-
- if (descending) {
- for (integer j = 1; j <= a.size / 2; j ++) {
- integer tmp = index [j];
- index [j] = index [a.size - j + 1];
- index [a.size - j + 1] = tmp;
- }
- }
-
- for (integer j = 1; j <= a.size; j ++) a [j] = atmp [index [j]];
-
- autoINTVEC itmp = INTVECraw (a.size);
- vectorcopy_preallocated (itmp.get(), iv1);
- for (integer j = 1; j <= a.size; j ++) iv1 [j ] = itmp [index [j]];
- vectorcopy_preallocated (itmp.get(), iv2);
- for (integer j = 1; j <= a.size; j ++) iv2 [j] = itmp [index [j]];
- }
- /* End of file NUMsort.cpp */
|