位置:首頁 > 高級語言 > C語言標準庫 > qsort() - C語言庫函數

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