热身赛一级赛题1,实现哈希表

This commit is contained in:
lbx 2023-09-28 17:57:51 +08:00
parent 1a6ee0234b
commit a869be0848
7 changed files with 259 additions and 271 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 75 KiB

After

Width:  |  Height:  |  Size: 156 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 102 KiB

After

Width:  |  Height:  |  Size: 111 KiB

View File

@ -1,16 +1,16 @@
# 基于cortex-m3-emulator实现哈希表并测试验证## # 基于cortex-m3-emulator实现哈希表并测试验证
## 1. 简介 ## 1. 简介
利用c语言实现了哈希表HashMap包括添加键值对(Put),获取键对应的值(Get), 删除健Delete清空哈希表(Clear) 迭代遍历哈希表(hashMapIterator)等功能 利用 c 语言实现了哈希表HashMap包括添加键值对(Put),获取键对应的值(Get), 删除健Delete清空哈希表(Clear) 迭代遍历哈希表(hashMapIterator)等功能操作。
操作。
利用数组Entry作为存储空间利用链表(*next)解决冲突。当哈希表的大小超过数组大小后,为避免发生冲突过多的情况,可以对哈希表扩容。 利用数组Entry作为存储空间使用 DJB 哈希算法,利用线性探测法解决冲突,对哈希表中的数据进行逻辑删除。当哈希表的大小超过数组大小后,为避免发生冲突过多的情况,可以对哈希表扩容。当哈希表的大小小于数组大小的一半时,会释放一半的内存。
## 2. 数据结构设计说明 ## 2. 数据结构设计说明
键值对结构 键值对结构
typedef struct entry { typedef struct entry {
void * key; // 键 void * key; // 键
void * value; // 值 void * value; // 值
Boolean isDelete; // 逻辑删除
struct entry * next; // 冲突链表 struct entry * next; // 冲突链表
}*Entry; }*Entry;
@ -26,11 +26,12 @@ typedef struct hashMap {
Remove remove; // 删除键 Remove remove; // 删除键
Clear clear; // 清空Map Clear clear; // 清空Map
Exists exists; // 判断键是否存在 Exists exists; // 判断键是否存在
Boolean autoAssign; // 设定是否根据当前数据量动态调整内存大小,默认开启 Boolean autoAssign; // 设定是否根据当前数据量动态调整内存大小,默认开启
}*HashMap; }*HashMap;
包括以下函数功能,分别为: 包括以下函数功能,分别为:
`createHashMap`:创建一个哈希结构 `createHashMap`:创建一个哈希结构
`defaultHashCode`:生成一个哈希值
`defaultPut`:添加键值对 `defaultPut`:添加键值对
`defaultGet`:获取键对应值 `defaultGet`:获取键对应值
`defaultRemove`:删除指定键的键值对 `defaultRemove`:删除指定键的键值对
@ -41,7 +42,7 @@ typedef struct hashMap {
## 3. 测试程序说明 ## 3. 测试程序说明
测试了哈希表的插入键值对(Put),判断键是否存在(Exist),获取键对应的值(Get) 删除健Delete迭代遍历哈希表(hashMapIterator),清空哈希表(Clear)等操作。 测试了哈希表的插入键值对(Put),判断键是否存在(Exist),获取键对应的值(Get) 删除健Delete迭代遍历哈希表(hashMapIterator),清空哈希表(Clear)等操作。
并展示了利用链地址法解决哈希冲突的示例, 两个不同的人(Bob和Li Ming)的hashcode相同。 并展示了利用线性探测法解决哈希冲突的示例, 多个原hashcode相同的人(Bob和LunaAnnie、Daniel和Li Ming)的新hashcode(存放的地址)不同。
## 4. 运行结果(##需结合运行测试截图按步骤说明## ## 4. 运行结果(##需结合运行测试截图按步骤说明##
![image](ConfigOpen.png) ![image](ConfigOpen.png)

Binary file not shown.

Before

Width:  |  Height:  |  Size: 94 KiB

After

Width:  |  Height:  |  Size: 109 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 95 KiB

After

Width:  |  Height:  |  Size: 114 KiB

View File

@ -11,282 +11,265 @@
#include"test_hash.h" #include"test_hash.h"
int defaultHashCode(HashMap hashMap, let key) { int defaultHashCode(HashMap hashMap, let key) {
char * k = (char *)key; char *k = (char *) key;
unsigned long h = 0; // DJB哈希算法
while (*k) { unsigned long hash = 5381;
h = (h << 4) + *k++; int c;
unsigned long g = h & 0xF0000000L; while (c = *k++) {
if (g) { hash = ((hash << 5) + hash) + c; /* hash * 33 + c */
h ^= g >> 24; }
} return hash % hashMap->listSize;
h &= ~g;
}
return h % hashMap->listSize;
} }
Boolean defaultEqual(let key1, let key2) { Boolean defaultEqual(let key1, let key2) {
return strcmp((string)key1, (string)key2) ? False : True; return strcmp((string) key1, (string) key2) ? False : True;
} }
void resetHashMap(HashMap hashMap, int listSize) { void resetHashMap(HashMap hashMap, int listSize) {
if (listSize < 8) return; if (listSize < 8) return;
// 键值对临时存储空间 // 键值对临时存储空间
Entry tempList = newEntryList(hashMap->size); Entry tempList = newEntryList(hashMap->size);
HashMapIterator iterator = createHashMapIterator(hashMap); HashMapIterator iterator = createHashMapIterator(hashMap);
int length = hashMap->size; int length = hashMap->size;
for (int index = 0; hasNextHashMapIterator(iterator); index++) { for (int index = 0; hasNextHashMapIterator(iterator); index++) {
// 迭代取出所有键值对 // 迭代取出所有没有被逻辑删除的键值对
iterator = nextHashMapIterator(iterator); iterator = nextHashMapIterator(iterator);
tempList[index].key = iterator->entry->key; if(!iterator->entry->isDelete){
tempList[index].value = iterator->entry->value; tempList[index].key = iterator->entry->key;
tempList[index].next = NULL; tempList[index].value = iterator->entry->value;
} tempList[index].isDelete = False;
freeHashMapIterator(&iterator); tempList[index].next = NULL;
}
}
freeHashMapIterator(&iterator);
// 清除原有键值对数据 // 清除原有键值对数据
hashMap->size = 0; hashMap->size = 0;
for (int i = 0; i < hashMap->listSize; i++) { for (int i = 0; i < hashMap->listSize; i++) {
Entry current = &hashMap->list[i]; Entry current = &hashMap->list[i];
current->key = NULL; current->key = NULL;
current->value = NULL; current->value = NULL;
if (current->next != NULL) { current->isDelete = False;
while (current->next != NULL) { if (current->next != NULL) {
Entry temp = current->next->next; while (current->next != NULL) {
free(current->next); Entry temp = current->next->next;
current->next = temp; free(current->next);
} current->next = temp;
} }
} }
}
// 更改内存大小 // 更改内存大小
hashMap->listSize = listSize; hashMap->listSize = listSize;
Entry relist = (Entry)realloc(hashMap->list, hashMap->listSize * sizeof(struct entry)); Entry relist = (Entry) realloc(hashMap->list, hashMap->listSize * sizeof(struct entry));
if (relist != NULL) { if (relist != NULL) {
hashMap->list = relist; hashMap->list = relist;
relist = NULL; relist = NULL;
} }
// 初始化数据 // 初始化数据
for (int i = 0; i < hashMap->listSize; i++) { for (int i = 0; i < hashMap->listSize; i++) {
hashMap->list[i].key = NULL; hashMap->list[i].key = NULL;
hashMap->list[i].value = NULL; hashMap->list[i].value = NULL;
hashMap->list[i].next = NULL; hashMap->list[i].isDelete = False;
} hashMap->list[i].next = NULL;
}
// 将所有键值对重新写入内存 // 将所有键值对重新写入内存
for (int i = 0; i < length; i++) { for (int i = 0; i < length; i++) {
hashMap->put(hashMap, tempList[i].key, tempList[i].value); hashMap->put(hashMap, tempList[i].key, tempList[i].value);
} }
free(tempList); free(tempList);
} }
void defaultPut(HashMap hashMap, let key, let value) { Boolean defaultPut(HashMap hashMap, let key, let value) {
// 获取哈希值 // 获取哈希值
int index = hashMap->hashCode(hashMap, key); int index = hashMap->hashCode(hashMap, key);
// 判断线性探测法是否成功插入
Boolean result = False;
// 如果发生冲突将根据线性探测法探测相邻的下一个单元是否可以存储,直到超出表长
for (int indexNext = index; indexNext < hashMap->listSize; ++indexNext) {
if (hashMap->list[indexNext].key == NULL) {
hashMap->size++;
// 该地址为空时直接存储
hashMap->list[indexNext].key = key;
hashMap->list[indexNext].value = value;
result = True;
break;
} else {
Entry current = &hashMap->list[indexNext];
while (current != NULL) {
if (hashMap->equal(key, current->key)) {
// 对于键值已经存在的直接覆盖
current->value = value;
return True;
}
current = current->next;
}
}
}
if (hashMap->autoAssign && hashMap->size >= hashMap->listSize) {
if (hashMap->list[index].key == NULL) { // 内存扩充至原来的两倍
hashMap->size++; // *注: 扩充时考虑的是当前存储元素数量与存储空间的大小关系,而不是存储空间是否已经存满,
// 该地址为空时直接存储 // 例如: 存储空间为10存入了10个键值对但是全部冲突了所以存储空间空着9个其余的全部挂在一个上面
hashMap->list[index].key = key; // 这样检索的时候和遍历查询没有什么区别了可以简单这样理解当我存入第11个键值对的时候一定会发生冲突
hashMap->list[index].value = value; // 这是由哈希函数本身的特性(取模)决定的,冲突就会导致检索变慢,所以这时候扩充存储空间,对原有键值对进行
} // 再次散列,会把冲突的数据再次分散开,加快索引定位速度。
else { resetHashMap(hashMap, hashMap->listSize * 2);
}
Entry current = &hashMap->list[index]; return result;
while (current != NULL) {
if (hashMap->equal(key, current->key)) {
// 对于键值已经存在的直接覆盖
current->value = value;
return;
}
current = current->next;
};
// 发生冲突则创建节点挂到相应位置的next上
Entry entry = newEntry();
entry->key = key;
entry->value = value;
entry->next = hashMap->list[index].next;
hashMap->list[index].next = entry;
hashMap->size++;
}
if (hashMap->autoAssign && hashMap->size >= hashMap->listSize) {
// 内存扩充至原来的两倍
// *注: 扩充时考虑的是当前存储元素数量与存储空间的大小关系,而不是存储空间是否已经存满,
// 例如: 存储空间为10存入了10个键值对但是全部冲突了所以存储空间空着9个其余的全部挂在一个上面
// 这样检索的时候和遍历查询没有什么区别了可以简单这样理解当我存入第11个键值对的时候一定会发生冲突
// 这是由哈希函数本身的特性(取模)决定的,冲突就会导致检索变慢,所以这时候扩充存储空间,对原有键值对进行
// 再次散列,会把冲突的数据再次分散开,加快索引定位速度。
resetHashMap(hashMap, hashMap->listSize * 2);
}
} }
let defaultGet(HashMap hashMap, let key) { let defaultGet(HashMap hashMap, let key) {
if (hashMap->exists(hashMap, key)) { if (hashMap->exists(hashMap, key)) {
int index = hashMap->hashCode(hashMap, key); int index = hashMap->hashCode(hashMap, key);
Entry entry = &hashMap->list[index]; for (int indexNext = index; indexNext < hashMap->listSize; ++indexNext) {
while (entry != NULL) { Entry entry = &hashMap->list[indexNext];
if (hashMap->equal(entry->key, key)) { if (entry == NULL) {
return entry->value; return NULL;
} }
entry = entry->next; if (hashMap->equal(entry->key, key) && !entry->isDelete) {
} return entry->value;
} }
return NULL; }
}
return NULL;
} }
let defaultRemove(HashMap hashMap, let key) { Boolean defaultRemove(HashMap hashMap, let key) {
int index = hashMap->hashCode(hashMap, key); int index = hashMap->hashCode(hashMap, key);
Entry entry = &hashMap->list[index]; Boolean result = False;
if (entry->key == NULL) { for (int indexNext = index; indexNext < hashMap->listSize; ++indexNext) {
return NULL; Entry entry = &hashMap->list[indexNext];
} if (entry->key == NULL) {
let entryKey = entry->key; return result;
Boolean result = False;
if (hashMap->equal(entry->key, key)) {
hashMap->size--;
if (entry->next != NULL) {
Entry temp = entry->next;
entry->key = temp->key;
entry->value = temp->value;
entry->next = temp->next;
free(temp);
}
else {
entry->key = NULL;
entry->value = NULL;
} }
result = True; if (hashMap->equal(entry->key, key)) {
} hashMap->size--;
else { if (entry->next != NULL) {
Entry p = entry; Entry temp = entry->next;
entry = entry->next; entry->key = temp->key;
while (entry != NULL) { entry->value = temp->value;
if (hashMap->equal(entry->key, key)) { entry->next = temp->next;
hashMap->size--; free(temp);
p->next = entry->next; } else {
free(entry); entry->isDelete = True;
result = True; }
break; result = True;
} break;
p = entry; }
entry = entry->next; }
}; // 如果空间占用不足一半,则释放多余内存
} if (result && hashMap->autoAssign && hashMap->size < hashMap->listSize / 2) {
resetHashMap(hashMap, hashMap->listSize / 2);
// 如果空间占用不足一半,则释放多余内存 }
if (result && hashMap->autoAssign && hashMap->size < hashMap->listSize / 2) { return result;
resetHashMap(hashMap, hashMap->listSize / 2);
}
return entryKey;
} }
Boolean defaultExists(HashMap hashMap, let key) { Boolean defaultExists(HashMap hashMap, let key) {
int index = hashMap->hashCode(hashMap, key); int index = hashMap->hashCode(hashMap, key);
Entry entry = &hashMap->list[index]; for (int indexNext = index; indexNext < hashMap->listSize; ++indexNext) {
if (entry->key == NULL) { Entry entry = &hashMap->list[indexNext];
return False; // 判断是否存在关键字并且没有被逻辑删除
} if (entry->key == NULL) {
else { return False;
while (entry != NULL) { } else if (hashMap->equal(entry->key, key) && !entry->isDelete) {
if (hashMap->equal(entry->key, key)) { return True;
return True; }
} }
entry = entry->next; return False;
}
return False;
}
} }
void defaultClear(HashMap hashMap) { void defaultClear(HashMap hashMap) {
for (int i = 0; i < hashMap->listSize; i++) { for (int i = 0; i < hashMap->listSize; i++) {
// 释放冲突值内存 // 释放冲突值内存
Entry entry = hashMap->list[i].next; Entry entry = hashMap->list[i].next;
while (entry != NULL) { while (entry != NULL) {
Entry next = entry->next; Entry next = entry->next;
free(entry); free(entry);
entry = next; entry = next;
} }
hashMap->list[i].next = NULL; hashMap->list[i].next = NULL;
} }
// 释放存储空间 // 释放存储空间
free(hashMap->list); free(hashMap->list);
hashMap->list = NULL; hashMap->list = NULL;
hashMap->size = -1; hashMap->size = -1;
hashMap->listSize = 0; hashMap->listSize = 0;
} }
HashMap createHashMap(HashCode hashCode, Equal equal) { HashMap createHashMap(HashCode hashCode, Equal equal) {
HashMap hashMap = newHashMap(); HashMap hashMap = newHashMap();
if (hashMap == NULL) { if (hashMap == NULL) {
return NULL; return NULL;
} }
hashMap->size = 0; hashMap->size = 0;
hashMap->listSize = 8; hashMap->listSize = 8;
hashMap->hashCode = hashCode == NULL ? defaultHashCode : hashCode; hashMap->hashCode = hashCode == NULL ? defaultHashCode : hashCode;
hashMap->equal = equal == NULL ? defaultEqual : equal; hashMap->equal = equal == NULL ? defaultEqual : equal;
hashMap->exists = defaultExists; hashMap->exists = defaultExists;
hashMap->get = defaultGet; hashMap->get = defaultGet;
hashMap->put = defaultPut; hashMap->put = defaultPut;
hashMap->remove = defaultRemove; hashMap->remove = defaultRemove;
hashMap->clear = defaultClear; hashMap->clear = defaultClear;
hashMap->autoAssign = True; hashMap->autoAssign = True;
// 起始分配8个内存空间溢出时会自动扩充 // 起始分配8个内存空间溢出时会自动扩充
hashMap->list = newEntryList(hashMap->listSize); hashMap->list = newEntryList(hashMap->listSize);
if (hashMap->list == NULL) { if (hashMap->list == NULL) {
return NULL; return NULL;
} }
Entry p = hashMap->list; Entry p = hashMap->list;
for (int i = 0; i < hashMap->listSize; i++) { for (int i = 0; i < hashMap->listSize; i++) {
p[i].key = p[i].value = p[i].next = NULL; p[i].key = p[i].value = p[i].next = NULL;
} p[i].isDelete = False;
return hashMap; }
return hashMap;
} }
HashMapIterator createHashMapIterator(HashMap hashMap) { HashMapIterator createHashMapIterator(HashMap hashMap) {
HashMapIterator iterator = newHashMapIterator(); HashMapIterator iterator = newHashMapIterator();
if (iterator == NULL) { if (iterator == NULL) {
return NULL; return NULL;
} }
iterator->hashMap = hashMap; iterator->hashMap = hashMap;
iterator->count = 0; iterator->count = 0;
iterator->hashCode = -1; iterator->hashCode = -1;
iterator->entry = NULL; iterator->entry = NULL;
return iterator; return iterator;
} }
Boolean hasNextHashMapIterator(HashMapIterator iterator) { Boolean hasNextHashMapIterator(HashMapIterator iterator) {
return iterator->count < iterator->hashMap->size ? True : False; return iterator->count < iterator->hashMap->size ? True : False;
} }
HashMapIterator nextHashMapIterator(HashMapIterator iterator) { HashMapIterator nextHashMapIterator(HashMapIterator iterator) {
if (hasNextHashMapIterator(iterator)) { if (hasNextHashMapIterator(iterator)) {
if (iterator->entry != NULL && iterator->entry->next != NULL) { if (iterator->entry != NULL && iterator->entry->next != NULL) {
iterator->count++; iterator->count++;
iterator->entry = iterator->entry->next; iterator->entry = iterator->entry->next;
return iterator; return iterator;
} }
while (++iterator->hashCode < iterator->hashMap->listSize) { while (++iterator->hashCode < iterator->hashMap->listSize) {
Entry entry = &iterator->hashMap->list[iterator->hashCode]; Entry entry = &iterator->hashMap->list[iterator->hashCode];
if (entry->key != NULL) { if (entry->key != NULL) {
iterator->count++; iterator->count++;
iterator->entry = entry; iterator->entry = entry;
break; break;
} }
} }
} }
return iterator; return iterator;
} }
void freeHashMapIterator(HashMapIterator * iterator) { void freeHashMapIterator(HashMapIterator *iterator) {
free(*iterator); free(*iterator);
*iterator = NULL; *iterator = NULL;
} }
#define Put(map, key, value) map->put(map, (void *)key, (void *)value); #define Put(map, key, value) map->put(map, (void *)key, (void *)value);
@ -308,8 +291,9 @@ void TestHash() {
HashMapIterator iterator = createHashMapIterator(map); HashMapIterator iterator = createHashMapIterator(map);
while (hasNextHashMapIterator(iterator)) { while (hasNextHashMapIterator(iterator)) {
iterator = nextHashMapIterator(iterator); iterator = nextHashMapIterator(iterator);
printf("{ key: %s, key: %s, hashcode: %d }\n", printf("{ key: %s, key: %s, oldHashcode: %d, newHashcode: %d }\n",
(char *)iterator->entry->key, (char *)iterator->entry->value, iterator->hashCode); (char *) iterator->entry->key, (char *) iterator->entry->value,
iterator->hashMap->hashCode(iterator->hashMap, iterator->entry->key), iterator->hashCode);
} }
printf("key: 000852, exists: %s\n", Existe(map, "000852") ? "true" : "false"); printf("key: 000852, exists: %s\n", Existe(map, "000852") ? "true" : "false");
printf("000852: %s\n", Get(map, "000852")); printf("000852: %s\n", Get(map, "000852"));

View File

@ -23,16 +23,19 @@
#define NEW(type) (type *)malloc(sizeof(type)) #define NEW(type) (type *)malloc(sizeof(type))
// 布尔类型 // 布尔类型
enum _Boolean { True = 1, False = 0 }; enum _Boolean {
typedef enum _Boolean Boolean; True = 1, False = 0
};
typedef enum _Boolean Boolean;
#define let void * #define let void *
typedef struct entry { typedef struct entry {
let key; // 键 let key; // 键
let value; // 值 let value; // 值
struct entry * next; // 冲突链表 Boolean isDelete; // 逻辑删除
}*Entry; struct entry *next; // 冲突链表
} *Entry;
#define newEntry() NEW(struct entry) #define newEntry() NEW(struct entry)
#define newEntryList(length) (Entry)malloc(length * sizeof(struct entry)) #define newEntryList(length) (Entry)malloc(length * sizeof(struct entry))
@ -48,14 +51,14 @@ typedef int(*HashCode)(HashMap, let key);
// 判等函数类型 // 判等函数类型
typedef Boolean(*Equal)(let key1, let key2); typedef Boolean(*Equal)(let key1, let key2);
// 添加键函数类型 // 添加键函数类型 返回是否成功
typedef void(*Put)(HashMap hashMap, let key, let value); typedef Boolean(*Put)(HashMap hashMap, let key, let value);
// 获取键对应值的函数类型 // 获取键对应值的函数类型
typedef let(*Get)(HashMap hashMap, let key); typedef let(*Get)(HashMap hashMap, let key);
// 删除键的函数类型 // 删除键的函数类型
typedef let(*Remove)(HashMap hashMap, let key); typedef Boolean(*Remove)(HashMap hashMap, let key);
// 清空Map的函数类型 // 清空Map的函数类型
typedef void(*Clear)(HashMap hashMap); typedef void(*Clear)(HashMap hashMap);
@ -64,26 +67,26 @@ typedef void(*Clear)(HashMap hashMap);
typedef Boolean(*Exists)(HashMap hashMap, let key); typedef Boolean(*Exists)(HashMap hashMap, let key);
typedef struct hashMap { typedef struct hashMap {
int size; // 当前大小 int size; // 当前大小
int listSize; // 有效空间大小 int listSize; // 有效空间大小
HashCode hashCode; // 哈希函数 HashCode hashCode; // 哈希函数
Equal equal; // 判等函数 Equal equal; // 判等函数
Entry list; // 存储区域 Entry list; // 存储区域
Put put; // 添加键的函数 Put put; // 添加键的函数
Get get; // 获取键对应值的函数 Get get; // 获取键对应值的函数
Remove remove; // 删除键 Remove remove; // 删除键
Clear clear; // 清空Map Clear clear; // 清空Map
Exists exists; // 判断键是否存在 Exists exists; // 判断键是否存在
Boolean autoAssign; // 设定是否根据当前数据量动态调整内存大小,默认开启 Boolean autoAssign; // 设定是否根据当前数据量动态调整内存大小,默认开启
}*HashMap; } *HashMap;
// 迭代器结构 // 迭代器结构
typedef struct hashMapIterator { typedef struct hashMapIterator {
Entry entry; // 迭代器当前指向 Entry entry; // 迭代器当前指向
int count; // 迭代次数 int count; // 迭代次数
int hashCode; // 键值对的哈希值 int hashCode; // 键值对的哈希值
HashMap hashMap; HashMap hashMap;
}*HashMapIterator; } *HashMapIterator;
#define newHashMapIterator() NEW(struct hashMapIterator) #define newHashMapIterator() NEW(struct hashMapIterator)
@ -93,14 +96,14 @@ static int defaultHashCode(HashMap hashMap, let key);
// 默认判断键值是否相等 // 默认判断键值是否相等
static Boolean defaultEqual(let key1, let key2); static Boolean defaultEqual(let key1, let key2);
// 默认添加键值对 // 默认添加键值对 返回是否插入成功
static void defaultPut(HashMap hashMap, let key, let value); static Boolean defaultPut(HashMap hashMap, let key, let value);
// 默认获取键对应值 // 默认获取键对应值
static let defaultGet(HashMap hashMap, let key); static let defaultGet(HashMap hashMap, let key);
// 默认删除键 // 默认删除键
static let defaultRemove(HashMap hashMap, let key); static Boolean defaultRemove(HashMap hashMap, let key);
// 默认判断键是否存在 // 默认判断键是否存在
static Boolean defaultExists(HashMap hashMap, let key); static Boolean defaultExists(HashMap hashMap, let key);
@ -124,6 +127,6 @@ Boolean hasNextHashMapIterator(HashMapIterator iterator);
HashMapIterator nextHashMapIterator(HashMapIterator iterator); HashMapIterator nextHashMapIterator(HashMapIterator iterator);
// 释放迭代器内存 // 释放迭代器内存
void freeHashMapIterator(HashMapIterator * iterator); void freeHashMapIterator(HashMapIterator *iterator);
#endif // !__HASHMAP_H__ #endif // !__HASHMAP_H__