提交 89c937a3 创建 作者: 宋海霞's avatar 宋海霞

modify

上级 2e40ff20
#ifndef SEARCHHASH_H_
#define SEARCHHASH_H_
//
// Include the C standard library header file here
//
#include <stdio.h>
//
// Other header files are included here
//
//
// Define the data structure here
//
#define HASH_LEN 20 // The length of the hash table
// Hash table
......@@ -30,22 +24,17 @@ typedef struct hterm
int si; // The number of rehashes
}HASH;
//
// Declare the function here
//
void Hash(int* KeyArray, int length); // The hash function
//
// Declare global variables here
//
extern HASH HashList[HASH_LEN];
#endif /* SEARCHHASH_H_ */
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论