次の方法で共有


qsort_s

クイック ソートを実行します。この関数は、「CRT のセキュリティ機能」に説明されているように、qsort のセキュリティが強化されたバージョンです。

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 ポインターです。2 番目の引数は、検索用の key へのポインターです。3 番目の引数は、key と比較される配列要素へのポインターです。

  • context
    compare ルーチンのアクセスに必要なオブジェクトがコンテキストへのポインター。

解説

qsort_s の関数は num 要素の配列をwidth の各バイト順に並べ替えます。遅延並べ替えアルゴリズムを実装します。引数 base に使用する配列のベースへのポインターです。qsort_s に使用された要素の配列をオーバーライドします。引数 compare は2 種類の配列の要素を比較し指定する値を返すユーザー関係を指定するルーチンへのポインターです。qsort_s は一つ以上の時間各呼び出しの 2 種類の配列要素へのポインターを渡す並べ替えの実行中に compare ルーチンを呼び出します :

compare( context, (void *) & elem1, (void *) & elem2 );

ルーチンは要素を比較して次の値から 1 を返す必要があります :

戻り値

Description

< 0

elem1elem2 より小さい

0

elem2 と同等の elem1

> 0

elem2 より大きい elem1

配列は比較関数の定義に従って昇順に並べ替えられます。から順に配列を並べ替えるには「より大きい」と比較関数の 「未満」の意味を元に戻します。

この関数に無効なパラメーターが渡されると無効なパラメーター ハンドラーが パラメーターの検証 に説明されているように開始されます。実行の継続が許可された場合関数はをerrno は EINVAL に設定されます。詳細については、「errno、_doserrno、_sys_errlist、および _sys_nerr」を参照してください。

エラー条件

キー

base

compare

num

width

errno

NULL

任意

任意

任意

任意

EINVAL

任意

NULL

任意

!= 0

任意

EINVAL

任意

任意

任意

任意

0 以下

EINVAL

任意

任意

NULL

任意

任意

EINVAL

qsort_s に qsort と同じ動作になりますがcontext のパラメーターを持ちさらに errno を設定します。context のパラメーターを渡すことによって比較関数によって要素のポインターを通じてアクセスできないオブジェクトの機能やそのほかの情報にアクセスするにはオブジェクトのポインターを使用できます。context のパラメーターの追加は静的変数の使用 によって導入される関数のセキュリティが強化されます。に compare の関数に共有情報を利用できるのに context を使用できるため qsort_s をより安全になります。

必要条件

ルーチン

必須ヘッダー

qsort_s

<stdlib.h> および <search.h>

互換性の詳細については、「C ランタイム ライブラリ」の「互換性」を参照してください。

ライブラリ :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

同等の .NET Framework 関数

Sort

参照

関連項目

検索と並べ替え

bsearch_s

_lsearch_s

qsort