静态查找的方法:顺序查找、对半查找、分块查找,C++代码实现

转自 : http://blog.csdn.net/hackerain/article/details/6093165ios #include<iostream>   using namespace std;   typedef struct   {       int r[100];       int length;   }SSTable;   //顺序查找   int Search_Seq(
相关文章
相关标签/搜索