阅读背景:

[置顶] Hash查找,散列查找

来源:互联网 
//Hash.h

#ifndef HASH_H
#define HASH_H
#define HASH_ARR_SIZE 100
#define FILL -1

#include <stdlib.h>
#include <stdio.h>
#include <string.h>

struct _Node
{
	int iFill;
	int iValue;
	struct _Node* pNext; 
};

typedef _Node Node;

typedef struct
{
	Node* pHashArr;
	int iArrSize;
	int iSize;
}Hash;

#endif//Hash.h

#ifndef HASH_H
#define HASH_H
#define



你的当前访问异常,请进行认证后继续阅读剩余内容。

分享到: