码迷,mamicode.com
首页 > 编程语言 > 详细

[数据结构与算法] : 二分查找

时间:2017-09-10 10:03:04      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:eof   def   ret   define   span   size   log   else   arch   

 1 #include <stdio.h>
 2 
 3 #define NotFound -1;
 4 typedef int ElementType;
 5 
 6 int BinarySearch( const ElementType A[], ElementType X, int N )
 7 {
 8     int Low, Mid, High;
 9 
10     Low = 0; High = N-1;
11     while( Low <= High ) // 注意终止条件
12     {
13         Mid = (Low + High) / 2;
14         if( A[Mid] < X )
15             Low = Mid + 1;
16         else if( A[Mid] > X )
17             High = Mid - 1;
18         else
19             return Mid;
20     }
21     return NotFound;
22 }
23 
24 int main()
25 {
26     int arr[10] = {1, 2, 3, 5, 6, 7, 9, 10, 12, 15};
27     int sizeofA = sizeof(arr) / sizeof(arr[0]);
28     printf("BinarySearch returns %d\n", BinarySearch(arr, 9, sizeofA));
29     return 0;
30 }

 

[数据结构与算法] : 二分查找

标签:eof   def   ret   define   span   size   log   else   arch   

原文地址:http://www.cnblogs.com/moon1992/p/7500047.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!