Main index | Section 3 | 日本語 | Options |
#include <search.h>
The key argument points to an element that matches the one that is searched. The array's address in memory is denoted by the base argument. The width of one element (i.e., the size as returned by sizeof()) is passed as the width argument. The number of valid elements contained in the array (not the number of elements the array has space reserved for) is given in the integer pointed to by nelp. The compar argument points to a function which compares its two arguments and returns zero if they are matching, and non-zero otherwise.
If no matching element was found in the array, lsearch() copies key into the position after the last element and increments the integer pointed to by nelp.
#include <search.h> #include <stdio.h> #include <stdlib.h>static int element_compare(const void *p1, const void *p2) { int left = *(const int *)p1; int right = *(const int *)p2;
return (left - right); }
int main(int argc, char **argv) { const int array[10] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}; size_t element_size = sizeof(array[0]); size_t array_size = sizeof(array) / element_size; int key; void *element;
printf("Enter a number: "); if (scanf("%d", &key) != 1) { printf("Bad input\n"); return (EXIT_FAILURE); }
element = lfind(&key, array, &array_size, element_size, element_compare);
if (element != NULL) printf("Element found: %d\n", *(int *)element); else printf("Element not found\n");
return (EXIT_SUCCESS); }
LSEARCH (3) | April 17, 2016 |
Main index | Section 3 | 日本語 | Options |
Please direct any comments about this manual page service to Ben Bullock. Privacy policy.
“ | Unix is a junk OS designed by a committee of PhDs. | ” |
— Dave Cutler |