qsort_s
执行快速排序。 qsort 的版本与安全增强的 CRT中的安全功能如中所述。
void qsort_s(
void *base,
size_t num,
size_t width,
int (__cdecl *compare )(void *, const void *, const void *),
void * context
);
参数
base
目标数组开头。num
在元素的数组大小。width
元素大小 (以字节为单位)。compare
比较函数。 第一个参数是 context 指针。 第二个参数是指向搜索的 key 。 第三个参数是指向数组元素与 key比较。context
对上下文的指针,可以是任何对象 compare 实例需要访问。
备注
qsort_s 函数实现一个快速排序算法排序数组 num 组件,每个 width 字节。 参数 base 是指向进行排序的数组的基础。 qsort_s 将复盖排序的元素的此数组。 参数 compare 是指向比较两个数组元素并返回指定它们之间的关系的值为用户提供的实例。 在排序时,qsort_s 调用 compare 实例一次或多次,通过指向在每个的两个数组元素调用:
compare( context, (void *) & elem1, (void *) & elem2 );
实例必须比较元素然后返回下列值之一:
返回值 |
说明 |
---|---|
< 0 |
elem1 小于 elem2 |
0 |
elem1 等效于 elem2 |
> 0 |
elem1 大于 elem2 |
数组以递增的顺序排序,所定义的比较函数。 若要的降序顺序对数组进行排序,请取消 “大于”和 “小于零的含义比”在比较函数。
如果传递的参数无效传递给函数,无效参数调用处理程序,如 参数验证所述。 如果允许继续执行,则该函数返回,并且 errno 设置为 EINVAL。 有关更多信息,请参见 errno、_doserrno、_sys_errlist和_sys_nerr。
错误状态
键 |
base |
compare |
num |
width |
errno |
---|---|---|---|---|---|
NULL |
任何 |
任何 |
任何 |
任何 |
EINVAL |
任何 |
NULL |
任何 |
!= 0 |
任何 |
EINVAL |
任何 |
任何 |
任何 |
任何 |
AMP_LT= 0 |
EINVAL |
任何 |
任何 |
NULL |
任何 |
任何 |
EINVAL |
qsort_s使行为和 qsort 相同,但有 context 参数并将 errno。 通过将 context 参数,比较函数可以使用对象指针来访问对象函数或其他信息不可通过元素指针。 ,因为 context 来避免重新进入 bug 中引入使用静态变量使共享信息提供给 compare 功能, context 参数的添加可 qsort_s更加安全。
要求
实例 |
必需的头 |
---|---|
qsort_s |
stdlib.h 和 search.h |
有关其他的兼容性信息,请参见中介绍的 兼容性 。
库:CRT库功能的所有版本。
示例
下面的示例在 qsort_s功能演示如何使用 context 参数。 context 参数便于执行线程安全排序。 而不是使用同步必须确保线程安全的静态变量,请通过在每个不同的 context 参数排序。 在此示例中,区域设置对象用作 context 参数。
// crt_qsort_s.cpp
// compile with: /EHsc /MT
#include <stdlib.h>
#include <stdio.h>
#include <search.h>
#include <process.h>
#include <locale.h>
#include <locale>
#include <windows.h>
using namespace std;
// The sort order is dependent on the code page. Use 'chcp' at the
// command line to change the codepage. When executing this application,
// the command prompt codepage must match the codepage used here:
#define CODEPAGE_850
#ifdef CODEPAGE_850
// Codepage 850 is the OEM codepage used by the command line,
// so \x00e1 is the German Sharp S in that codepage and \x00a4
// is the n tilde.
char *array1[] = { "wei\x00e1", "weis", "annehmen", "weizen", "Zeit",
"weit" };
char *array2[] = { "Espa\x00a4ol", "Espa\x00a4" "a", "espantado" };
char *array3[] = { "table", "tableux", "tablet" };
#define GERMAN_LOCALE "German_Germany.850"
#define SPANISH_LOCALE "Spanish_Spain.850"
#define ENGLISH_LOCALE "English_US.850"
#endif
#ifdef CODEPAGE_1252
// If using codepage 1252 (ISO 8859-1, Latin-1), use \x00df
// for the German Sharp S and \x001f for the n tilde.
char *array1[] = { "wei\x00df", "weis", "annehmen", "weizen", "Zeit",
"weit" };
char *array2[] = { "Espa\x00f1ol", "Espa\x00f1" "a", "espantado" };
char *array3[] = { "table", "tableux", "tablet" };
#define GERMAN_LOCALE "German_Germany.1252"
#define SPANISH_LOCALE "Spanish_Spain.1252"
#define ENGLISH_LOCALE "English_US.1252"
#endif
// The context parameter lets you create a more generic compare.
// Without this parameter, you would have stored the locale in a
// static variable, thus making sort_array vulnerable to thread
// conflicts.
int compare( void *pvlocale, const void *str1, const void *str2)
{
char s1[256];
char s2[256];
strcpy_s(s1, 256, *(char**)str1);
strcpy_s(s2, 256, *(char**)str2);
_strlwr_s( s1, sizeof(s1) );
_strlwr_s( s2, sizeof(s2) );
locale& loc = *( reinterpret_cast< locale * > ( pvlocale));
return use_facet< collate<char> >(loc).compare(s1,
&s1[strlen(s1)], s2, &s2[strlen(s2)]);
}
void sort_array(char *array[], int num, locale &loc)
{
qsort_s(array, num, sizeof(char*), compare, &loc);
}
void print_array(char *a[], int c)
{
for (int i = 0; i < c; i++)
printf("%s ", a[i]);
printf("\n");
}
void sort_german(void * Dummy)
{
sort_array(array1, 6, locale(GERMAN_LOCALE));
}
void sort_spanish(void * Dummy)
{
sort_array(array2, 3, locale(SPANISH_LOCALE));
}
void sort_english(void * Dummy)
{
sort_array(array3, 3, locale(ENGLISH_LOCALE));
}
int main( )
{
int i;
HANDLE threads[3];
printf("Unsorted input:\n");
print_array(array1, 6);
print_array(array2, 3);
print_array(array3, 3);
// Create several threads that perform sorts in different
// languages at the same time.
threads[0] = reinterpret_cast<HANDLE>(
_beginthread( sort_german , 0, NULL));
threads[1] = reinterpret_cast<HANDLE>(
_beginthread( sort_spanish, 0, NULL));
threads[2] = reinterpret_cast<HANDLE>(
_beginthread( sort_english, 0, NULL));
for (i = 0; i < 3; i++)
{
if (threads[i] == reinterpret_cast<HANDLE>(-1))
{
printf("Error creating threads.\n");
exit(1);
}
}
// Wait until all threads have terminated.
WaitForMultipleObjects(3, threads, true, INFINITE);
printf("Sorted output: \n");
print_array(array1, 6);
print_array(array2, 3);
print_array(array3, 3);
}
示例输出
Unsorted input:
weiß weis annehmen weizen Zeit weit
Español España espantado
table tableux tablet
Sorted output:
annehmen weiß weis weit weizen Zeit
España Español espantado
table tablet tableux