提交 8296d30b 创建 作者: 宋海霞's avatar 宋海霞

modify

上级 81e39569
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
// //
// 在此处包含 C 标准库头文件 // Include the C standard library header file here
// //
...@@ -11,35 +11,35 @@ ...@@ -11,35 +11,35 @@
// //
// 在此处包含其他头文件 // Other header files are included here
// //
// //
// 在此处定义数据结构 // Define the data structure here
// //
#define HASH_LEN 20 // 哈希表的长度 #define HASH_LEN 20 // The length of the hash table
// 哈希表 // Hash table
typedef struct hterm{ typedef struct hterm{
int key; // 关键字 int key; // keyword
int si; // 再散列次数 int si; // The number of rehashes
}HASH; }HASH;
// //
// 在此声明函数 // Declare the function here
// //
void Hash(int* KeyArray, int length); // 哈希函数 void Hash(int* KeyArray, int length); // The hash function
// //
// 在此处声明全局变量 // Declare global variables here
// //
......
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论