博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
折半查找实现1
阅读量:5282 次
发布时间:2019-06-14

本文共 745 字,大约阅读时间需要 2 分钟。

1 /* binarySearch   2 05/05/13 17:24 3 */ 4 #include
5 #include
6 using namespace std; 7 int binarySearch(int *array,int low,int high,int value)// 返回value的位置,如果是-1则表示没找到 8 { 9 if(low<=high){10 int mid;11 mid= (low+high)/2;12 if(value==array[mid])13 return mid;14 else if(value
>num;28 int *array=NULL;29 array = (int *)malloc(sizeof(int)*(num));30 cout<<"input the sorted array:"<
>array[i];32 cout<<"input search value:"<
>value;34 cout<
<<"'s postion is:"<
<

 

转载于:https://www.cnblogs.com/goongqk/archive/2013/05/16/binarySearch1.html

你可能感兴趣的文章
INSERT IGNORE INTO / REPLACE INTO
查看>>
Python数据类型-布尔/数字/字符串/列表/元组/字典/集合
查看>>
类的无参方法
查看>>
【刷题】SPOJ 705 SUBST1 - New Distinct Substrings
查看>>
IEEE 754浮点数表示标准
查看>>
declare 结构用来设定一段代码的执行指令
查看>>
图解算法读书笔记
查看>>
调试学习笔记
查看>>
解开lambda最强作用的神秘面纱
查看>>
Java基础:Object类中的equals与hashCode方法
查看>>
C#拦截Http请求
查看>>
[bzoj2152]聪聪可可
查看>>
图片下载器
查看>>
找不到docker.socket解决方法
查看>>
Activity生命周期
查看>>
HTML中head头结构
查看>>
IntelliJ IDEA 最新破解方法
查看>>
sql server和mysql中分别实现分页功能
查看>>
jQuery CircleCounter的环形倒计时效果
查看>>
kafka server管理
查看>>