快速排序+二分查找與哈希表
#include
const int MAX= 100001;
typedef struct
{
}Entry;
Entry entry[MAX];
int i = 0;
int cmp(const void *a, const void *b)
{
}
int BinSearch(char c[])
{
}
int main()
{
}
字符串哈希表,在《算法藝術(shù)與信息學(xué)競賽》推薦使用ELFHash函數(shù),哈希沖突的處理采用鏈表法
#include
const int M = 149993;
typedef struct
{
}Entry;
Entry entry[M];
int i = 1;
int hashIndex[M];
int ELFHash(char *key)
{
}
void find(char f[])
{
}
int main()
{
}
評論