//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