search.h
来自「it is a great algorithm to secarching.」· C头文件 代码 · 共 17 行
H
17 行
#ifndef SEARCH_H#define SEARCH_H#include <stdlib.h>/* binarysearch() - A binary search implementation which takes the same * arguments as the C library function bsearch() provided by stdlib.h. It * searches the sorted array at address base, which has nmemb elements, each of * which is size bytes long. compar is a pointer to a comparison function. * The function compares two array elements, and returns a negative, zero, or * positive integer depending on whether the first array element is less than, * equal to, or greater than the second. */void *binarysearch(const void *key, const void *base, size_t nmemb, size_t size, int (*compar)(const void *, const void *));#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?