标签:style rtl 一个 edit war 算法 行编辑 示例 div
在公茂果老师的课件中,出现的好多具体的算法例子,这里,跟踪给出,二分法查找的指定数字的代码:
下面给出Ubuntu下,编译环境的操作过程:
下面给出一个简单二分法查找示例:
1 #include<stdio.h> 2 main() 3 { 4 int num[]={1,2,3,4,5,6,7,8,9,10}; 5 int left=0,right=9,a; 6 int find; 7 scanf("%d",&find); 8 while(left<right) 9 { 10 a=(left+right)/2; 11 if(num[a]==find) 12 { 13 printf("所找的数在第%d个",a+1); 14 break; 15 } 16 else if(find>num[a]) 17 left=a+1; 18 else 19 right=a-1; 20 } 21 if(left<right) 22 printf("没有这个数"); 23 }
标签:style rtl 一个 edit war 算法 行编辑 示例 div
原文地址:http://www.cnblogs.com/jtailong/p/7735827.html