QSORT.C
资源名称:C.rar [点击查看]
上传用户:qq5388545
上传日期:2022-07-04
资源大小:29849k
文件大小:1k
源码类别:

界面编程

开发平台:

C/C++

  1. #include <stdlib.h>
  2. #include <stdio.h>
  3. int compare_int(int *a, int *b)
  4.  {
  5.    return(*a - *b);
  6.  }
  7. int compare_float(float *a, float *b)
  8.  {
  9.    if (*a < *b)
  10.      return(-1);
  11.    else if (*a == *b)
  12.      return(0);
  13.    else
  14.      return(1);
  15.  }
  16. void main(void)
  17.  {
  18.    int int_values[] = {51, 23, 2, 44, 45}; 
  19.    float float_values[] = {21.1, 13.3, 22.2, 34.4, 15.5};  
  20.    
  21.    int elements = 5, i;
  22.    
  23.    qsort(int_values, elements, sizeof(int), 
  24.       (int (*) (const void *, const void *)) compare_int);
  25.    for (i = 0; i < elements; i++)
  26.      printf("%d ", int_values[i]);
  27.    putchar('n');
  28.    qsort(float_values, elements, sizeof(float), 
  29.      (int (*) (const void *, const void *)) compare_float);
  30.    
  31.    for (i = 0; i < elements; i++)
  32.      printf("%4.1f ", float_values[i]);
  33.  }