LSEARCH.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.    return((*a == *b) ? 0: 1);
  10.  }
  11. void main(void)
  12.  {
  13.    int int_values[10] = {1, 3, 2, 4, 5}; 
  14.    int *int_ptr, int_value = 1001, elements = 5, i;
  15.    printf("Array contents before searchn");
  16.    for (i = 0; i < elements; i++)
  17.      printf("%d ", int_values[i]);
  18.    
  19.    int_ptr = lsearch(&int_value, int_values, 
  20.       &elements, sizeof(int), 
  21.       (int (*) (const void *, const void *)) compare_int);
  22.    printf("nArray contents after searchn");
  23.    for (i = 0; i < elements; i++)
  24.      printf("%d ", int_values[i]);
  25.  }