해시 표 의 생 성, 삽입, 찾기 - C 언어 가 간단 합 니 다.

1444 단어 데이터 구조
자라 데이터 구조 과정의 개량 판:
//   (   )   、   、     
#include
#include
using namespace std;

#define HASHSIZE 13
#define NULLKEY -32456     //        

//       
typedef struct
{
	int *elem; //       ,      
	int count; //         
}HashTable;

//      
int InitHashTable(HashTable *H)
{
	H->count = HASHSIZE;
	H->elem = (int *)malloc(HASHSIZE * sizeof(int));
	if (!H->elem)
	{
		return -1;
	}
	for (int i = 0; i < HASHSIZE; i++)
	{
		H->elem[i] = NULLKEY;
	}
	return 0;
}

//       ——     
int HashFunction(int key, int p)
{
	return(key % p); //p <= HASHSIZE,  
}

//         
void InsertHashTable(HashTable *H, int key)
{
	int addr;
	addr = HashFunction(key, HASHSIZE);
	//int faddr;
	//faddr = addr;
	//int i = 1;
	while (H->elem[addr] != NULLKEY)
	{
		addr = HashFunction((addr + 1), HASHSIZE); //         :     —    
		//   
		/*
		addr = HashFunction((faddr + i), HASHSIZE);
		i++;
		*/
	}
	H->elem[addr] = key;
}

//           
int SearchHashTable(HashTable *H, int key)
{
	int addr = HashFunction(key, HASHSIZE);
	while (H->elem[addr] != key)
	{
		if (H->elem[addr] == NULLKEY)
		{
			cout << "    " << endl;
			return -1;
		}
		addr = HashFunction((addr + 1), HASHSIZE);
		if (addr == HashFunction(key, HASHSIZE))
		{
			cout << "    " << endl;
			return -1;
		}
	}
	return addr;
}

int main()
{
	return 0;
}

좋은 웹페이지 즐겨찾기