해시 표 분리 링크 법 - 두 가지 초기 화 방법 및 대비
2843 단어 데이터 구조
다음은 성명, 방법 1, 방법 2.
typedef int ElementType;
/* hashSep.h */
#ifndef HashSep_H
#define HashSep_H
typedef unsigned int Index; //Hash()
struct listnode;
typedef struct listnode *position;
typedef struct listnode *list;
struct hashta1;
typedef struct hashta1 *hashtable;
list MakeEmpty(void);
hashtable InitTable_1(int tableSize); //
hashtable InitTable_2(int tableSize); //
void DestoryTable(hashtable h);
position Find(ElementType key, hashtable h);
void Insert(ElementType key, hashtable h);
ElementType Retrieve(position p);
#endif
/* ENDING */
/* hashSep.c */
/* The list using headers */
#include
#include
#define MinTableSize (5)
struct listnode
{
ElementType element;
position next;
};
struct hashta1
{
int tableSize;
list *theLists; //
};
hashtable InitTable_1(int tableSize)
{
hashtable h;
int i;
if (tableSize < MinTableSize)
{
printf("Table size too small!!
");
return NULL;
}
/* allocate tabel */
h = malloc(sizeof(struct hashta1));
if (h == NULL)
{
printf("Out of space!!
");
exit(1);
}
h->tableSize =NextPrime(tableSize);
/* allocate array of lists */
h->theLists = malloc(sizeof(list)*h->tableSize);
// , headers , listnode , h->tableSize malloc
if(h->theLists==NULL)
{
printf("Out of space!!
");
exit(1);
}
/* allocate list header */
for (i = 0;i < h->tableSize;++i)
{
h->theLists[i] = malloc(sizeof(struct listnode));
if (h->theLists[i] == NULL)
{
printf("Out of space!!
");
exit(1);
}
else
h->theLists[i]->next= NULL;
}
return h;
}
hashtable InitTable_2(int tableSize)
{
hashtable h;
int i;
if (tableSize < MinTableSize)
{
printf("Table size too small!
");
return NULL;
}
/* allocate table */
h = malloc(sizeof(struct hashta1));
if (h == NULL)
{
printf("Out of space!!
");
exit(1);
}
h->tableSize = NextPrime(tableSize);
/* allocate array of list */
h->theLists = malloc(sizeof(struct listnode)*h->tableSize);
// h->tableSize malloc() h->theLists[i] ,
if (h->theLists == NULL)
{
printf("Out of space!!
");
exit(1);
}
/* allocate list header */
for (i = 0;i < h->tableSize;++i)
{
h->theLists[i]->next= MakeEmpty();
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 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에 따라 라이센스가 부여됩니다.