哈希表

哈希表:不同的Key值經過哈希函數Hash(Key)處理以後可能產生相同的值哈希地址,我們稱這種情況爲哈希衝突。所以用哈希衝突的開鏈法(哈希桶)進行處理,其結構如下:

wKiom1cx1Imzr3sxAAAjmbzKkKc289.png

代碼如下:

#define _CRT_SECURE_NO_WARNINGS 1
#include<iostream>
#include<vector>
using namespace std;

template<class k,class v>
struct HashTableNode
{
	k _key;
	v _value;
	HashTableNode<k, v>* _next;
	
	HashTableNode<k,v>(const k& key, const v& value) //構造函數
		:_key(key)
		, _value(value)
		, _next(NULL)
	{}  
	 
	HashTableNode()    //構造無參函數
		:_key(0)
		, _value(0)
		, _next(NULL)
	{}
};

template<class k, class v>
class HashTable
{
	typedef HashTableNode<k, v> Node;
public:
	HashTable<k,v>()
		:_size(0)
		, _tables(NULL)
	{}

	HashTable<k,v>(const HashTable<k,v>& ht)  //拷貝構造函數
	{
		_tables.resize(ht._size);
		_size = ht._size;
		for (size_t i = 0; i < _size; i++)
		{
			Node* cur1 = ht._tables[i];
			Node* cur2 = NULL;
			
			while (cur1)
			{
				if (_tables[i] == NULL)
				{   //當鏈表爲空,則開闢新節點,並將地址返回給_tables[i]
					_tables[i] = new Node(cur1->_key, cur1->_value);
					cur2 = _tables[i];
				}
				else
				{  //其他情況則將新開闢的節點地址返回給cur2的next
					cur2->_next = new Node(cur1->_key, cur1->_value);
				}
				cur1 = cur1->_next;
			}
		}
	}

	~HashTable()
	{
	    if (_size != 0)
		{
			for (size_t i = 0; i < _size; i++)
			{
				Node* del = _tables[i];
				while (del) //del不爲空,則將del後的節點刪除
				{
					Node* next = del->_next;
					delete del;
					del = next;
					_size--;
				}
				_tables[i] = NULL;
			}
		}
		
	}

	HashTable<k, v> &operator=(HashTable<k, v> ht)   //現代寫法
	{   //函數傳參時會構造一個對象,此時只需將對象中的_tables和_size相互交換就行了
             
		if (this != &ht)
		{
			if (&ht != this)
			{
				swap(_tables, ht._tables);
				swap(_size, ht._size);
			}
			return *this; 

		}
	}
		
	
	bool Insert(const k& key, const v& value)
	{
		if (_size == _tables.size())
		{
			_CheckExpand();  //先進行檢查容量,如若不夠則需擴容
		}
		
		size_t index = _HashFunc(key); //將下標賦值給index
		Node* begin = _tables[index];
		while (begin)
		{
			if (begin->_key == key)
			{
				return false; //查找key,如若有則返回false
			}
			begin = begin->_next;
		}
		Node* tmp = new Node(key, value);
		tmp->_next = _tables[index];
		_tables[index] = tmp;
		_size++;
		return true;
	}

	size_t _HashFunc(const k&key)  //返回key所在的下標
	{
		return key%_tables.size();
	}

	void _CheckExpand()   //檢查擴容
	{
		
			size_t newsize = _GetNextPrime();
			if (newsize == _size)//若果當前容量等於newsize,函數返回
			{
				return;
			}
	
			vector<Node*> newTables;
			newTables.resize(newsize); //開闢newsize大小的容量
			for (size_t i = 0; i < _tables.size(); i++)
			{  //將空間的每個節點都初始化
				Node* cur = _tables[i];
				while (cur)
				{
					Node* tmp = cur;
					cur = cur->_next;
					size_t index = _HashFunc(tmp->_key);
					tmp->_next = newTables[index];
					newTables[index] = tmp;
				}
				_tables[i] =NULL;
			}
			_tables.swap(newTables);
	}

	size_t  _GetNextPrime()  //定義28個素數表,因爲素數有利於降低載荷因子
	{
		static const int _PrimeSize = 28;
		static const unsigned long _PrimeList[_PrimeSize] =
		{
			53ul, 97ul, 193ul, 389ul, 769ul,
			1543ul, 3079ul, 6151ul, 12289ul, 24593ul,
			49157ul, 98317ul, 196613ul, 393241ul, 786433ul,
			1572869ul, 3145739ul, 6291469ul, 12582917ul, 25165843ul,
			50331653ul, 100663319ul, 201326611ul, 402653189ul, 805306457ul,
			1610612741ul, 3221225473ul, 4294967291ul
		};

		for (int i = 0; i < _PrimeSize; i++)
		{
			if (_PrimeList[i]> _tables.size())
			{
				return _PrimeList[i];
			}
		}
		return _PrimeList[_PrimeSize - 1];
	}

	Node* Find(const k& key)     //查找節點 並返回該節點地址
	{
		size_t index = _HashFunc(key);
		Node* cur = _tables[index];
		while (cur)
		{
			if (cur->_key == key)
			{
				return cur;
			}
			cur = cur->_next;
		}

		return NULL;
	}

	bool Remove(const k& key)    //刪除某個節點
	{
		size_t index = _HashFunc(key);
		Node* cur = _tables[index];
		Node* prev = NULL;
		while (cur)
		{
			if (cur->_key == key)
			{
				break;
			}
			prev = cur;
			cur = cur->_next;
		}
		if (cur == _tables[index])
		{
			_tables[index] = cur->_next;
			return true;
		}

		else
		{
			prev->_next = cur->_next;
			delete cur;
			return true;
		}
		return false;
	}

	void PrintTables()
	{
		printf("哈希表如下:\n");
		for (size_t i = 0; i < _tables.size(); i++)
		{
			Node* cur = _tables[i];
			while (cur)
			{ 
				/*cout << cur->_key << " ";
				cur = cur->_next;*/
				
				printf("[%d]=%c & %d  ", i, cur->_value,cur->_key);
				cur = cur->_next;
				if (cur==NULL)
				{
					printf("\n");
				}
			}
		}
		printf("\n");
	}

protected:
	size_t _size;
	vector<Node*> _tables;
};

測試代碼如下:
void Test()
{
   typedef HashTableNode<int, char> Node;

    HashTable<int, char> ht;
	ht.Insert(1, 'a');
	ht.Insert(2, 'b');
	ht.Insert(3, 'c');
	ht.Insert(4, 'd');
	ht.Insert(5, 'e');
	ht.Insert(54, 'x');
	ht.Insert(55, 'y');
	ht.Insert(56, 'z');
	ht.PrintTables();

	HashTable<int, char> ht2;
	ht2.Insert(54, 'x');
	ht2.Insert(55, 'y');
	ht2.Insert(56, 'z');
	ht2.Insert(1, 'a');
	ht2.Insert(2, 'b');
	ht2.Insert(3, 'c');
	ht2.Insert(4, 'd');
	ht2.Insert(5, 'e');
	ht2.PrintTables();

	
	ht=ht2;
	ht.PrintTables();



	/*Node* ret = ht.Find(55);
	cout << ret->_value << endl;*/
	/*ht.Remove(4);
	ht.PrintTables();*/
	

	/*HashTable<int, char> ht1(ht);
	ht1.PrintHashTable();*/
}


int main()
{
	Test();
	system("pause");
	return 0;
}


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章