摘要: #include <stdio.h>#define N 5int binarySearch(int *x, int n, int item); // 函数声明int main(){int a[N] = {2, 7, 19, 45, 66};int i, index, key;printf("数组a中 阅读全文
posted @ 2021-12-15 20:09 沈晓阳 阅读(28) 评论(0) 推荐(0) 编辑