浙大版《数据结构(第2版)》题目集5.10 线性探测法的查找函数 (20分)
程序员文章站
2022-06-10 19:18:55
...
一、题目描述
#include <stdio.h>
#define MAXTABLESIZE 100000 /* 允许开辟的最大散列表长度 */
typedef int ElementType; /* 关键词类型用整型 */
typedef int Index; /* 散列地址类型 */
typedef Index Position; /* 数据所在位置与散列地址是同一类型 */
/* 散列单元状态类型,分别对应:有合法元素、空单元、有已删除元素 */
typedef enum { Legitimate, Empty, Deleted } EntryType;
typedef struct HashEntry Cell; /* 散列表单元类型 */
struct HashEntry{
ElementType Data; /* 存放元素 */
EntryType Info; /* 单元状态 */
};
typedef struct TblNode *HashTable; /* 散列表类型 */
struct TblNode { /* 散列表结点定义 */
int TableSize; /* 表的最大长度 */
Cell *Cells; /* 存放散列单元数据的数组 */
};
HashTable BuildTable(); /* 裁判实现,细节不表 */
Position Hash( ElementType Key, int TableSize )
{
return (Key % TableSize);
}
#define ERROR -1
Position Find( HashTable H, ElementType Key );
int main()
{
HashTable H;
ElementType Key;
Position P;
H = BuildTable();
scanf("%d", &Key);
P = Find(H, Key);
if (P==ERROR)
printf("ERROR: %d is not found and the table is full.\n", Key);
else if (H->Cells[P].Info == Legitimate)
printf("%d is at position %d.\n", Key, P);
else
printf("%d is not found. Position %d is returned.\n", Key, P);
return 0;
}
/* 你的代码将被嵌在这里 */
二、解题代码
注意如果直接定位的地址的Data
都不匹配的话,说明一定找不到
Position Find(const HashTable H, ElementType Key ){
ElementType index = Hash(Key, H->TableSize), firstEmpty = 0;
if(H->Cells[index].Data == -1) goto Tag;
while(H->Cells[index].Data != Key && index < H->TableSize) index++;
while(H->Cells[firstEmpty].Data != -1 && firstEmpty < H->TableSize) firstEmpty++;
Tag:
return (index < H->TableSize) ? index : (firstEmpty < H->TableSize) ? firstEmpty : ERROR;
}