]>
git.saurik.com Git - apple/icu.git/blob - icuSources/test/cintltst/sorttest.c
1 // © 2016 and later: Unicode, Inc. and others.
2 // License & terms of use: http://www.unicode.org/copyright.html
4 *******************************************************************************
6 * Copyright (C) 2003-2014, International Business Machines
7 * Corporation and others. All Rights Reserved.
9 *******************************************************************************
10 * file name: sorttest.c
12 * tab size: 8 (not used)
15 * created on: 2003aug04
16 * created by: Markus W. Scherer
18 * Test internal sorting functions.
23 #include "unicode/utypes.h"
24 #include "unicode/ucol.h"
25 #include "unicode/ustring.h"
32 uint16_t small
[]={ 8, 1, 2, 5, 4, 3, 7, 6 };
33 int32_t medium
[]={ 10, 8, 1, 2, 5, 5, -1, 6, 4, 3, 9, 7, 5 };
34 uint32_t large
[]={ 21, 10, 20, 19, 11, 12, 13, 10, 10, 10, 10,
35 8, 1, 2, 5, 10, 10, 4, 17, 18, 3, 9, 10, 7, 6, 14, 15, 16 };
40 /* sort small array (stable) */
41 errorCode
=U_ZERO_ERROR
;
42 uprv_sortArray(small
, UPRV_LENGTHOF(small
), sizeof(small
[0]), uprv_uint16Comparator
, NULL
, TRUE
, &errorCode
);
43 if(U_FAILURE(errorCode
)) {
44 log_err("uprv_sortArray(small) failed - %s\n", u_errorName(errorCode
));
47 for(i
=1; i
<UPRV_LENGTHOF(small
); ++i
) {
48 if(small
[i
-1]>small
[i
]) {
49 log_err("uprv_sortArray(small) mis-sorted [%d]=%u > [%d]=%u\n", i
-1, small
[i
-1], i
, small
[i
]);
54 /* for medium, add bits that will not be compared, to test stability */
55 for(i
=0; i
<UPRV_LENGTHOF(medium
); ++i
) {
56 medium
[i
]=(int32_t)((uint32_t)medium
[i
]<<4) | i
;
59 /* sort medium array (stable) */
60 uprv_sortArray(medium
, UPRV_LENGTHOF(medium
), sizeof(medium
[0]), uprv_int32Comparator
, NULL
, TRUE
, &errorCode
);
61 if(U_FAILURE(errorCode
)) {
62 log_err("uprv_sortArray(medium) failed - %s\n", u_errorName(errorCode
));
65 for(i
=1; i
<UPRV_LENGTHOF(medium
); ++i
) {
66 if(medium
[i
-1]>=medium
[i
]) {
67 log_err("uprv_sortArray(medium) mis-sorted [%d]=%u > [%d]=%u\n", i
-1, medium
[i
-1], i
, medium
[i
]);
72 /* sort large array (not stable) */
73 errorCode
=U_ZERO_ERROR
;
74 uprv_sortArray(large
, UPRV_LENGTHOF(large
), sizeof(large
[0]), uprv_uint32Comparator
, NULL
, FALSE
, &errorCode
);
75 if(U_FAILURE(errorCode
)) {
76 log_err("uprv_sortArray(large) failed - %s\n", u_errorName(errorCode
));
79 for(i
=1; i
<UPRV_LENGTHOF(large
); ++i
) {
80 if(large
[i
-1]>large
[i
]) {
81 log_err("uprv_sortArray(large) mis-sorted [%d]=%u > [%d]=%u\n", i
-1, large
[i
-1], i
, large
[i
]);
87 #if !UCONFIG_NO_COLLATION
90 * Fill an array with semi-random short strings.
91 * Vary them enough to be interesting, but create duplicates.
92 * With CYCLE=10 characters per STR_LEN=3 string positions there are only 1000 unique strings.
93 * NUM_LINES should be larger than this.
95 #define NUM_LINES 10000
100 * Use characters beyond the Latin Extended A block to avoid a collator fastpath.
101 * They should sort unique, so that we can later use a binary comparison for string equality.
103 #define BASE_CHAR 0x200
105 typedef struct Line
{
107 int32_t recordNumber
;
111 printLines(const Line
*lines
) {
114 for(i
=0; i
<NUM_LINES
; ++i
) {
115 const Line
*line
=lines
+i
;
116 for(j
=0; j
<STR_LEN
; ++j
) {
117 printf("%04x ", line
->s
[j
]);
119 printf(" #%5d\n", line
->recordNumber
);
124 /* Use a collator so that the comparisons are not essentially free, for simple benchmarking. */
125 static int32_t U_EXPORT2
126 linesComparator(const void *context
, const void *left
, const void *right
) {
127 const UCollator
*coll
=(const UCollator
*)context
;
128 const Line
*leftLine
=(const Line
*)left
;
129 const Line
*rightLine
=(const Line
*)right
;
130 /* compare the strings but not the record number */
131 return ucol_strcoll(coll
, leftLine
->s
, STR_LEN
, rightLine
->s
, STR_LEN
);
134 static void StableSortTest() {
135 UErrorCode errorCode
=U_ZERO_ERROR
;
141 coll
=ucol_open("root", &errorCode
);
142 if(U_FAILURE(errorCode
)) {
143 log_data_err("ucol_open(root) failed - %s\n", u_errorName(errorCode
));
147 lines
=p
=(Line
*)uprv_malloc(NUM_LINES
*sizeof(Line
));
148 uprv_memset(lines
, 0, NUM_LINES
*sizeof(Line
)); /* avoid uninitialized memory */
150 for(j
=0; j
<STR_LEN
; ++j
) { s
[j
]=BASE_CHAR
; }
152 for(i
=0; i
<NUM_LINES
; ++i
) {
154 u_memcpy(p
->s
, s
, STR_LEN
);
156 /* Modify the string for the next line. */
158 if(c
==BASE_CHAR
+CYCLE
) { c
=BASE_CHAR
; }
160 if(++j
==STR_LEN
) { j
=0; }
163 puts("\n* lines before sorting");
166 uprv_sortArray(lines
, NUM_LINES
, (int32_t)sizeof(Line
),
167 linesComparator
, coll
, TRUE
, &errorCode
);
168 if(U_FAILURE(errorCode
)) {
169 log_err("uprv_sortArray() failed - %s\n", u_errorName(errorCode
));
172 puts("* lines after sorting");
175 /* Verify that the array is sorted correctly. */
177 for(i
=1; i
<NUM_LINES
; ++i
) {
178 Line
*q
=p
+1; /* =lines+i */
179 /* Binary comparison first, for speed. In this case, equal strings must be identical. */
180 int32_t diff
=u_strCompare(p
->s
, STR_LEN
, q
->s
, STR_LEN
, FALSE
);
182 if(p
->recordNumber
>=q
->recordNumber
) {
183 log_err("equal strings %d and %d out of order at sorted index %d\n",
184 (int)p
->recordNumber
, (int)q
->recordNumber
, (int)i
);
188 /* Compare unequal strings with the collator. */
189 diff
=ucol_strcoll(coll
, p
->s
, STR_LEN
, q
->s
, STR_LEN
);
191 log_err("unequal strings %d and %d out of order at sorted index %d\n",
192 (int)p
->recordNumber
, (int)q
->recordNumber
, (int)i
);
203 #endif /* !UCONFIG_NO_COLLATION */
206 addSortTest(TestNode
** root
);
209 addSortTest(TestNode
** root
) {
210 addTest(root
, &SortTest
, "tsutil/sorttest/SortTest");
211 #if !UCONFIG_NO_COLLATION
212 addTest(root
, &StableSortTest
, "tsutil/sorttest/StableSortTest");