hash.h
来自「数据结构--C语言 数据结构源代码大全 用C语言编写」· C头文件 代码 · 共 12 行
H
12 行
#include <stdio.h>
#include <stdlib.h>
#define m 13
#define NULLKEY 0
typedef int KeyType; /* 假设关键字为整型 */
typedef struct
{
KeyType key;
}RecordType;
typedef RecordType HashTable[m];
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?