WEB开发网
开发学院软件开发C++ C语言库函数(Q类字母) 阅读

C语言库函数(Q类字母)

 2008-03-08 12:31:05 来源:WEB开发网   
核心提示: 函数名: qsort功能: 使用快速排序例程进行排序用法: void qsort(void *base, int nelem, int width, int (*fcmp)());程序例: #include <stdio.h>#include <stdlib.h>#include <st
  
函数名: qsort
功 能: 使用快速排序例程进行排序
用 法: void qsort(void *base, int nelem, int width, int (*fcmp)());
程序例: 
#include <stdio.h>
#include <stdlib.h>
#include <string.h> 

int sort_function( const void *a, const void *b); 

char list[5][4] = { "cat", "car", "cab", "cap", "can" };
 

int main(void)
{
  int x; 

  qsort((void *)list, 5, sizeof(list[0]), sort_function);
  for (x = 0; x < 5; x++)
   PRintf("%s\n", list[x]);
  return 0;


int sort_function( const void *a, const void *b)
{
  return( strcmp(a,b) );
}
 

Tags:语言 函数 字母

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接