当前位置:   article > 正文

数据结构哈希表的建立和查找数据_c语言哈希表的字符串建立与查找

c语言哈希表的字符串建立与查找

#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <conio.h>
#define NUM 5
typedef struct hash {
	int num;//哈希表多少个值
	char* data;//data的指针
}hash;
hash* init() {
	hash* L = (hash*)malloc(sizeof(hash));
	L->num = 0;
	//指针型的若要用内部东西就要开辟空间
	L->data = (char*)malloc(sizeof(char) * NUM);
	for (int i = 0; i < NUM; i++) {
		L->data[i] = 0;
	}
	return L;
}
int achash(int data) {
	return data % NUM;
}
void inhash(hash* L, char data) {
	int index = achash(data);
	if (L->data[index] != 0) {//<>0说明被空间占住了
		int xianxing = 1;//线性探测法
		while (L->data[index] != 0){
			index = achash(achash(data) + xianxing);
			xianxing++;
		}//遍历直到不冲突为止
		L->data[index] = data;
	}
	else//不冲突直接将元素放入这个地方
		L->data[index]=data;
}
int ss(hash* L, char data) {
	int index = achash(data);
	while (L->data[index] != data) {
		int xianxing = 1;
		while (L->data[index] != data) {
			index = achash(achash(data) + xianxing);
			if (xianxing == NUM)
				return -1;
			xianxing++;
		}
	}
	return index;
}
int main() {
	hash* H = init();
	char a;
	inhash(H, 'A');
	inhash(H, 'F');
	inhash(H, 'H');
	inhash(H, 'D');
	inhash(H, 'C');
	for (int i = 0; i < NUM; i++)
		printf("H->data[%d]=%c\n", i, H->data[i]);
	//查找多次
	while (1) {
		printf("输入查找的元素(大写英语字母):\n");
		a = _getche();//不回车直接出结果
		ss(H, a) != -1 ? printf("\n此字母存在\n") : printf("\n此字母不存在\n");
	}
	//查找一次
	/*
	printf("输入查找的元素(大写英语字母):\n");
	scanf_s("%d", &a);
	ss(H, a) != -1 ? printf("\n此字母存在\n") : printf("\n此字母不存在\n");
	*/
	return 0;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73

在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/117658
推荐阅读
相关标签
  

闽ICP备14008679号