qsort() - C語言庫函式


C庫函式 void qsort(void *base, size_t nitems, size_t size, int (*compar)(const void *, const void*))  陣列進行排序。

宣告

以下是宣告  qsort() 函式。

void qsort(void *base, size_t nitems, size_t size, int (*compar)(const void *, const void*))

引數

  • base -- 這就是指標的陣列的第一個元素進行排序。

  • nitems -- 這是由基部指向的陣列中的元素數目。

  • size -- 這是在陣列中的每個元素的大小(以位元組為單位)。

  • compar -- 這個函式比較兩個元素。

返回值

這個函式不返回任何值。

例子

下面的例子顯示的 qsort() 函式的用法。

#include <stdio.h>
#include <stdlib.h>

int values[] = { 88, 56, 100, 2, 25 };

int cmpfunc (const void * a, const void * b)
{
   return ( *(int*)a - *(int*)b );
}

int main()
{
   int n;

   printf("Before sorting the list is: 
");
   for( n = 0 ; n < 5; n++ ) {
      printf("%d ", values[n]);
   }

   qsort(values, 5, sizeof(int), cmpfunc);

   printf("
After sorting the list is: 
");
   for( n = 0 ; n < 5; n++ ) {
      printf("%d ", values[n]);
   }
  
  return(0);
}

讓我們編譯和執行上面的程式,這將產生以下結果:

Before sorting the list is: 
88 56 100 2 25 
After sorting the list is: 
2 25 56 88 100