build
This commit is contained in:
parent
265097e5fb
commit
c641987cd8
@ -1149,44 +1149,47 @@ comments: true
|
|||||||
=== "C"
|
=== "C"
|
||||||
|
|
||||||
```c title="hash_map_chaining.c"
|
```c title="hash_map_chaining.c"
|
||||||
/* 基于数组简易实现的链式地址哈希表 */
|
/* 链表节点 */
|
||||||
|
struct node {
|
||||||
|
Pair *pair;
|
||||||
|
struct Node *next;
|
||||||
|
};
|
||||||
|
|
||||||
|
typedef struct node Node;
|
||||||
|
|
||||||
|
/* 链式地址哈希表 */
|
||||||
struct hashMapChaining {
|
struct hashMapChaining {
|
||||||
int size; // 键值对数量
|
int size; // 键值对数量
|
||||||
int capacity; // 哈希表容量
|
int capacity; // 哈希表容量
|
||||||
double loadThres; // 触发扩容的负载因子阈值
|
double loadThres; // 触发扩容的负载因子阈值
|
||||||
int extendRatio; // 扩容倍数
|
int extendRatio; // 扩容倍数
|
||||||
Pair *buckets; // 桶数组
|
Node **buckets; // 桶数组
|
||||||
};
|
};
|
||||||
|
|
||||||
typedef struct hashMapChaining hashMapChaining;
|
typedef struct hashMapChaining hashMapChaining;
|
||||||
|
|
||||||
/* 初始化桶数组 */
|
/* 构造方法 */
|
||||||
hashMapChaining *newHashMapChaining() {
|
hashMapChaining *initHashMapChaining() {
|
||||||
// 为哈希表分配空间
|
|
||||||
int tableSize = 4;
|
|
||||||
hashMapChaining *hashMap = (hashMapChaining *)malloc(sizeof(hashMapChaining));
|
hashMapChaining *hashMap = (hashMapChaining *)malloc(sizeof(hashMapChaining));
|
||||||
|
|
||||||
// 初始化数组
|
|
||||||
hashMap->buckets = (Pair *)malloc(sizeof(Pair) * tableSize);
|
|
||||||
memset(hashMap->buckets, 0, sizeof(Pair) * tableSize);
|
|
||||||
|
|
||||||
hashMap->capacity = tableSize;
|
|
||||||
hashMap->size = 0;
|
hashMap->size = 0;
|
||||||
hashMap->extendRatio = 2;
|
hashMap->capacity = 4;
|
||||||
hashMap->loadThres = 2.0 / 3.0;
|
hashMap->loadThres = 2.0 / 3.0;
|
||||||
|
hashMap->extendRatio = 2;
|
||||||
|
hashMap->buckets = (Node **)malloc(hashMap->capacity * sizeof(Node *));
|
||||||
|
for (int i = 0; i < hashMap->capacity; i++) {
|
||||||
|
hashMap->buckets[i] = NULL;
|
||||||
|
}
|
||||||
return hashMap;
|
return hashMap;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* 销毁哈希表 */
|
/* 析构方法 */
|
||||||
void delHashMapChaining(hashMapChaining *hashMap) {
|
void freeHashMapChaining(hashMapChaining *hashMap) {
|
||||||
for (int i = 0; i < hashMap->capacity; i++) {
|
for (int i = 0; i < hashMap->capacity; i++) {
|
||||||
Pair *pair = &hashMap->buckets[i];
|
Node *cur = hashMap->buckets[i];
|
||||||
Node *node = pair->node;
|
while (cur) {
|
||||||
while (node != NULL) {
|
Node *temp = cur;
|
||||||
Node *temp = node;
|
cur = cur->next;
|
||||||
node = node->next;
|
free(temp->pair);
|
||||||
free(temp->val);
|
|
||||||
free(temp);
|
free(temp);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -1195,7 +1198,7 @@ comments: true
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* 哈希函数 */
|
/* 哈希函数 */
|
||||||
int hashFunc(hashMapChaining *hashMap, const int key) {
|
int hashFunc(hashMapChaining *hashMap, int key) {
|
||||||
return key % hashMap->capacity;
|
return key % hashMap->capacity;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1205,136 +1208,109 @@ comments: true
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* 查询操作 */
|
/* 查询操作 */
|
||||||
char *get(hashMapChaining *hashMap, const int key) {
|
char *get(hashMapChaining *hashMap, int key) {
|
||||||
int index = hashFunc(hashMap, key);
|
int index = hashFunc(hashMap, key);
|
||||||
Pair *pair = &hashMap->buckets[index];
|
// 遍历桶,若找到 key 则返回对应 val
|
||||||
Node *node = pair->node;
|
Node *cur = hashMap->buckets[index];
|
||||||
while (node != NULL) {
|
while (cur) {
|
||||||
if (node->key == key) {
|
if (cur->pair->key == key) {
|
||||||
return node->val;
|
return cur->pair->val;
|
||||||
}
|
}
|
||||||
node = node->next;
|
cur = cur->next;
|
||||||
}
|
}
|
||||||
return NULL;
|
return ""; // 若未找到 key 则返回空字符串
|
||||||
}
|
}
|
||||||
|
|
||||||
/* 添加操作 */
|
/* 添加操作 */
|
||||||
void put(hashMapChaining *hashMap, const int key, char *val) {
|
void put(hashMapChaining *hashMap, int key, const char *val) {
|
||||||
|
// 当负载因子超过阈值时,执行扩容
|
||||||
if (loadFactor(hashMap) > hashMap->loadThres) {
|
if (loadFactor(hashMap) > hashMap->loadThres) {
|
||||||
extend(hashMap);
|
extend(hashMap);
|
||||||
}
|
}
|
||||||
int index = hashFunc(hashMap, key);
|
int index = hashFunc(hashMap, key);
|
||||||
|
// 遍历桶,若遇到指定 key ,则更新对应 val 并返回
|
||||||
// 先为新节点分配空间再赋值
|
Node *cur = hashMap->buckets[index];
|
||||||
|
while (cur) {
|
||||||
|
if (cur->pair->key == key) {
|
||||||
|
strcpy(cur->pair->val, val); // 若遇到指定 key ,则更新对应 val 并返回
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
cur = cur->next;
|
||||||
|
}
|
||||||
|
// 若无该 key ,则将键值对添加至尾部
|
||||||
|
Pair *newPair = (Pair *)malloc(sizeof(Pair));
|
||||||
|
newPair->key = key;
|
||||||
|
strcpy(newPair->val, val);
|
||||||
Node *newNode = (Node *)malloc(sizeof(Node));
|
Node *newNode = (Node *)malloc(sizeof(Node));
|
||||||
memset(newNode, 0, sizeof(Node));
|
newNode->pair = newPair;
|
||||||
newNode->key = key;
|
newNode->next = hashMap->buckets[index];
|
||||||
newNode->val = (char *)malloc(strlen(val) + 1);
|
hashMap->buckets[index] = newNode;
|
||||||
strcpy(newNode->val, val);
|
|
||||||
newNode->val[strlen(val)] = '\0';
|
|
||||||
|
|
||||||
Pair *pair = &hashMap->buckets[index];
|
|
||||||
Node *node = pair->node;
|
|
||||||
if (node == NULL) {
|
|
||||||
hashMap->buckets[index].node = newNode;
|
|
||||||
hashMap->size++;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
while (node != NULL) {
|
|
||||||
if (node->key == key) {
|
|
||||||
// 释放先前分配的内存
|
|
||||||
free(node->val);
|
|
||||||
// 更新节点的值
|
|
||||||
node->val = (char *)malloc(strlen(val) + 1);
|
|
||||||
strcpy(node->val, val);
|
|
||||||
node->val[strlen(val)] = '\0';
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if (node->next == NULL) {
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
node = node->next;
|
|
||||||
}
|
|
||||||
node->next = newNode;
|
|
||||||
hashMap->size++;
|
hashMap->size++;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* 删除操作 */
|
|
||||||
void removeItem(hashMapChaining *hashMap, int key) {
|
|
||||||
int index = hashFunc(hashMap, key);
|
|
||||||
Pair *pair = &hashMap->buckets[index];
|
|
||||||
Node *node = pair->node;
|
|
||||||
// 保存后继的节点
|
|
||||||
Node *prev = NULL;
|
|
||||||
while (node != NULL) {
|
|
||||||
if (node->key == key) {
|
|
||||||
// 如果要删除的节点是桶的第一个节点
|
|
||||||
if (prev == NULL) {
|
|
||||||
pair->node = node->next;
|
|
||||||
} else {
|
|
||||||
prev->next = node->next;
|
|
||||||
}
|
|
||||||
// 释放内存
|
|
||||||
free(node->val);
|
|
||||||
free(node);
|
|
||||||
hashMap->size--;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
prev = node;
|
|
||||||
node = node->next;
|
|
||||||
}
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* 扩容哈希表 */
|
/* 扩容哈希表 */
|
||||||
void extend(hashMapChaining *hashMap) {
|
void extend(hashMapChaining *hashMap) {
|
||||||
// 暂存原哈希表
|
// 暂存原哈希表
|
||||||
Pair *oldBuckets = hashMap->buckets;
|
|
||||||
int oldCapacity = hashMap->capacity;
|
int oldCapacity = hashMap->capacity;
|
||||||
|
Node **oldBuckets = hashMap->buckets;
|
||||||
// 创建新的哈希表,重新分配一段空间
|
// 初始化扩容后的新哈希表
|
||||||
hashMap->capacity *= hashMap->extendRatio;
|
hashMap->capacity *= hashMap->extendRatio;
|
||||||
hashMap->buckets = (Pair *)malloc(sizeof(Pair) * hashMap->capacity);
|
hashMap->buckets = (Node **)malloc(hashMap->capacity * sizeof(Node *));
|
||||||
memset(hashMap->buckets, 0, sizeof(Pair) * hashMap->capacity);
|
for (int i = 0; i < hashMap->capacity; i++) {
|
||||||
hashMap->size = 0;
|
hashMap->buckets[i] = NULL;
|
||||||
|
|
||||||
// 将原哈希表中的键值对重新哈希到新的哈希表中
|
|
||||||
for (int i = 0; i < oldCapacity; i++) {
|
|
||||||
Node *node = oldBuckets[i].node;
|
|
||||||
while (node != NULL) {
|
|
||||||
put(hashMap, node->key, node->val);
|
|
||||||
node = node->next;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
hashMap->size = 0;
|
||||||
// 释放原哈希表的内存
|
// 将键值对从原哈希表搬运至新哈希表
|
||||||
for (int i = 0; i < oldCapacity; i++) {
|
for (int i = 0; i < oldCapacity; i++) {
|
||||||
Node *node = oldBuckets[i].node;
|
Node *cur = oldBuckets[i];
|
||||||
while (node != NULL) {
|
while (cur) {
|
||||||
Node *temp = node;
|
put(hashMap, cur->pair->key, cur->pair->val);
|
||||||
node = node->next;
|
Node *temp = cur;
|
||||||
free(temp->val);
|
cur = cur->next;
|
||||||
|
// 释放内存
|
||||||
|
free(temp->pair);
|
||||||
free(temp);
|
free(temp);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
free(oldBuckets);
|
free(oldBuckets);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* 删除操作 */
|
||||||
|
void removeKey(hashMapChaining *hashMap, int key) {
|
||||||
|
int index = hashFunc(hashMap, key);
|
||||||
|
Node *cur = hashMap->buckets[index];
|
||||||
|
Node *pre = NULL;
|
||||||
|
while (cur) {
|
||||||
|
if (cur->pair->key == key) {
|
||||||
|
// 从中删除键值对
|
||||||
|
if (pre) {
|
||||||
|
pre->next = cur->next;
|
||||||
|
} else {
|
||||||
|
hashMap->buckets[index] = cur->next;
|
||||||
|
}
|
||||||
|
// 释放内存
|
||||||
|
free(cur->pair);
|
||||||
|
free(cur);
|
||||||
|
hashMap->size--;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
pre = cur;
|
||||||
|
cur = cur->next;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/* 打印哈希表 */
|
/* 打印哈希表 */
|
||||||
void print(hashMapChaining *hashMap) {
|
void print(hashMapChaining *hashMap) {
|
||||||
for (int i = 0; i < hashMap->capacity; i++) {
|
for (int i = 0; i < hashMap->capacity; i++) {
|
||||||
|
Node *cur = hashMap->buckets[i];
|
||||||
printf("[");
|
printf("[");
|
||||||
Pair *pair = &hashMap->buckets[i];
|
while (cur) {
|
||||||
Node *node = pair->node;
|
printf("%d -> %s, ", cur->pair->key, cur->pair->val);
|
||||||
while (node != NULL) {
|
cur = cur->next;
|
||||||
if (node->val != NULL) {
|
|
||||||
printf("%d->%s, ", node->key, node->val);
|
|
||||||
}
|
|
||||||
node = node->next;
|
|
||||||
}
|
}
|
||||||
printf("]\n");
|
printf("]\n");
|
||||||
}
|
}
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user