해시 표 닫 기 해시 (코드 구현)
3062 단어 데이터 구조
#pragma once
#include
size_t HashMaxSize=1000;
typedef enum Stat {
Empty,
Valid,
Invalid //
} Stat;
typedef int KeyType;
typedef int ValType;
typedef size_t (*HashFunc)(KeyType key);
typedef struct HashElem {
KeyType key;
ValType value;
Stat stat; // stat
} HashElem;
typedef struct HashTable {
HashElem *data;
size_t size;
HashFunc hash_func;
} HashTable;
void HashInit(HashTable* ht, HashFunc fp);
int HashInsert(HashTable* ht, KeyType key, ValType value);
// key, key value.
int HashFind(HashTable* ht, KeyType key, ValType* value);
void HashRemove(HashTable* ht, KeyType key);
int HashEmpty(HashTable* ht);
size_t HashSize(HashTable* ht);
void HashDestroy(HashTable* ht);
HashClose.c
ShowTable(&ht,(char*)"insert 600 element");
printf("HashMaxSize:%lu
", HashMaxSize);
}
void TestRemove()
{
TEST_HEADER;
HashTable ht;
HashInit(&ht,HashFun);
int i;
for(i=0;i<600;i++)
{
HashInsert(&ht,i,i*4);
}
ShowTable(&ht,(char*)"first insert 600 element");
for(i=0;i<600;i++)
{
HashRemove(&ht,i);
}
ShowTable(&ht,(char*)"remove 600 element");
for(i=0;i<600;i++)
{
HashInsert(&ht,i,i*4);
}
ShowTable(&ht,(char*)"second insert 600 element");
}
void TestDestory()
{
TEST_HEADER;
HashTable ht;
HashInit(&ht,HashFun);
HashInsert(&ht,3,24);
HashDestroy(&ht);
ShowTable(&ht,(char*)"Destroy");
}
int main()
{
TestInit();
TestInsert();
TestRemove();
TestDestory();
return 0;
}
Makefile
HashClose: HashClose.c
gcc -o $@ $^
.PHONY:clean
clean:
rm HashClose
실행 결과:
[abc123@localhost hash_close]$ ./HashClose
=================TestInit=================
-------HashInit-------
HashTable
data : 0xade010
size : 0
func : 0x400610
=================TestInsert=================
-------before insert -------
HashTable
data : 0xae0f00
size : 0
func : 0x400610
HashMaxSize:1000
-------insert 600 element-------
HashTable
data : 0xae3df0
size : 600
func : 0x400610
HashMaxSize:2001
=================TestRemove=================
-------first insert 600 element-------
HashTable
data : 0xae9bd0
size : 600
func : 0x400610
-------remove 600 element-------
HashTable
data : 0xae9bd0
size : 0
func : 0x400610
-------second insert 600 element-------
HashTable
data : 0xae9bd0
size : 600
func : 0x400610
=================TestDestory=================
-------Destroy-------
HashTable
data : (nil)
size : 0
func : (nil)
[abc123@localhost hash_close]$
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
정수 반전Udemy 에서 공부 한 것을 중얼거린다 Chapter3【Integer Reversal】 (예) 문자열로 숫자를 반전 (toString, split, reverse, join) 인수의 수치 (n)가 0보다 위 또는 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.