码迷,mamicode.com
首页 >  
搜索关键字:binarysearch    ( 268个结果
实验五
Part 1实验结论:A B G Part 2: 2-1-1: // 练习:使用二分查找,在一组有序元素中查找数据项 // 形参是数组,实参是数组名 #include <stdio.h> #include <stdlib.h> const int N=5; int binarySearch(int ...
分类:其他好文   时间:2019-12-17 22:37:53    阅读次数:96
实验五
// 练习:使用二分查找,在一组有序元素中查找数据项 // 形参是数组,实参是数组名 #include <stdio.h> #include <stdlib.h> const int N=5; int binarySearch(int x[], int n, int item); // 函数声明 i ...
分类:其他好文   时间:2019-12-17 13:26:00    阅读次数:75
实验5
#include <stdio.h> #include <stdlib.h> const int N=5; int binarySearch(int x[], int n, int item); // 函数声明 int main() { int a[N]={2,7,19,45,66}; int i, ...
分类:其他好文   时间:2019-12-17 00:26:35    阅读次数:116
实验五
2-1-1 // 练习:使用二分查找,在一组有序元素中查找数据项 // 形参是数组,实参是数组名 #include <stdio.h> #include <stdlib.h> const int N=5; int binarySearch(int x[], int n, int item); // ...
分类:其他好文   时间:2019-12-17 00:12:11    阅读次数:72
实验5
ex2.1.1 // 练习:使用二分查找,在一组有序元素中查找数据项 // 形参是数组,实参是数组名 #include <stdio.h> #include <stdlib.h> const int N=5; int binarySearch(int x[], int n, int item); / ...
分类:其他好文   时间:2019-12-17 00:07:29    阅读次数:115
实验五
#include <stdio.h> #include <stdlib.h> const int N=5; int binarySearch(int x[], int n, int item); int main() { int a[N]={2,7,19,45,66}; int i,index, k ...
分类:其他好文   时间:2019-12-16 13:39:48    阅读次数:101
实验5
// 练习:使用二分查找,在一组有序元素中查找数据项 // 形参是数组,实参是数组名 #include <stdio.h> #include <stdlib.h> const int N=5; int binarySearch(int x[], int n, int item); // 函数声明 i ...
分类:其他好文   时间:2019-12-15 22:18:28    阅读次数:106
实验五
ex2_1_1 // 形参是数组,实参是数组名 #include <stdio.h>#include <stdlib.h> const int N=5; int binarySearch(int x[], int n, int item); // 函数声明 int main() { int a[N] ...
分类:其他好文   时间:2019-12-15 18:39:50    阅读次数:82
实验五
// 练习:使用二分查找,在一组有序元素中查找数据项 // 形参是数组,实参是数组名 #include <stdio.h> #include <stdlib.h> const int N=5; int binarySearch(int x[], int n, int item); // 函数声明 i ...
分类:其他好文   时间:2019-12-15 18:08:51    阅读次数:59
实验五
// 练习:使用二分查找,在一组有序元素中查找数据项 // 形参是数组,实参是数组名 #include <stdio.h> #include <stdlib.h> const int N=5; int binarySearch(int x[], int n, int item); // 函数声明 i ...
分类:其他好文   时间:2019-12-15 14:49:24    阅读次数:92
268条   上一页 1 2 3 4 5 6 ... 27 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!