数据结构 折半查找
数据结构习题---折半查找代码 void BinInsert(int A[],int &n,int item) { int j,low=1,high=n,mid; while(low
下载地址
用户评论
十分感谢,注释写得挺全的,用数组解决折半查找问题