博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
c++ 实现hashmap
阅读量:5025 次
发布时间:2019-06-12

本文共 3378 字,大约阅读时间需要 11 分钟。

由于hashmap不是c++ stl中标准实现,这样在跨平台使用时就可能会出现问题,于是想到自己实现一个hashmap

hash算法使用开链法解决hash冲突,主要实现了添加,删除,查找几个方法

头文件如下hashmap.h

#ifndef _HASHMAP_H_#define _HASHMAP_H_template
class HashNode{public: Key _key; Value _value; HashNode *next; HashNode(Key key, Value value) { _key = key; _value = value; next = NULL; } ~HashNode() { } HashNode& operator=(const HashNode& node) { _key = node._key; _value = node._value; next = node.next; return *this; }};template
class HashMap{public: HashMap(int size); ~HashMap(); bool insert(const Key& key, const Value& value); bool del(const Key& key); Value& find(const Key& key); Value& operator [](const Key& key);private: HashFunc hash; EqualKey equal; HashNode
**table; unsigned int _size; Value ValueNULL;};template
HashMap
::HashMap(int size) : _size(size),hash(),equal(){
table = new HashNode
*[_size]; for (unsigned i = 0; i < _size; i++) table[i] = NULL;}template
HashMap
::~HashMap(){ for (unsigned i = 0; i < _size; i++) { HashNode
*currentNode = table[i]; while (currentNode) { HashNode
*temp = currentNode; currentNode = currentNode->next; delete temp; } } delete table;}template
bool HashMap
::insert(const Key& key, const Value& value){ int index = hash(key)%_size; HashNode
* node = new HashNode
(key,value); node->next = table[index]; table[index] = node; return true;}template
bool HashMap
::del(const Key& key){ unsigned index = hash(key) % _size; HashNode
* node = table[index]; HashNode
* prev = NULL; while (node) { if (node->_key == key) { if (prev == NULL) { table[index] = node->next; } else { prev->next = node->next; } delete node; return true; } prev = node; node = node->next; } return false;}template
Value& HashMap
::find(const Key& key){ unsigned index = hash(key) % _size; if (table[index] == NULL) return ValueNULL; else { HashNode
* node = table[index]; while (node) { if (node->_key == key) return node->_value; node = node->next; } }}template
Value& HashMap
::operator [](const Key& key){ return find(key);}#endif

测试代码

//首先要定义hash函数与比较函数class HashFunc{public:    int operator()(const string & key )    {        int hash = 0;        for(int i = 0; i < key.length(); ++i)        {            hash = hash << 7 ^ key[i];        }        return (hash & 0x7FFFFFFF);    }};class EqualKey{public:    bool operator()(const string & A, const string & B)    {        if (A.compare(B) == 0)            return true;        else            return false;    }};测试用例int main(){    HashMap
hashmap(100); hashmap.insert("hello", "world"); hashmap.insert("why", "dream"); hashmap.insert("c++", "good"); hashmap.insert("welcome", "haha"); cout << "after insert:" << endl; cout << hashmap.find("welcome").c_str() << endl; cout << hashmap.find("c++").c_str() << endl; cout << hashmap["why"].c_str() << endl; cout << hashmap["hello"].c_str() << endl; if (hashmap.del("hello")) cout << "remove is ok" << endl; //remove is ok cout << hashmap.find("hello").c_str() << endl; //not exist print NULL hashmap["why"] = "love"; cout << hashmap["why"].c_str() << endl; return 0;}

 

转载于:https://www.cnblogs.com/myd620/p/6349552.html

你可能感兴趣的文章
Codeforces Gym 100513M M. Variable Shadowing 暴力
查看>>
浅谈 Mybatis中的 ${ } 和 #{ }的区别
查看>>
CNN 笔记
查看>>
版本更新
查看>>
SQL 单引号转义
查看>>
start
查看>>
实现手机扫描二维码页面登录,类似web微信-第三篇,手机客户端
查看>>
PHP socket客户端长连接
查看>>
7、shell函数
查看>>
【转】Apache Jmeter发送post请求
查看>>
Nginx 基本 安装..
查看>>
【凸优化】保留凸性的几个方式(交集、仿射变换、投影、线性分式变换)
查看>>
NYOJ-613//HDU-1176-免费馅饼,数字三角形的兄弟~~
查看>>
TFS --- GrantBackup Plan Permissions Error
查看>>
傅里叶级数与积分方程
查看>>
软工作业3:用户体验分析——以“南通大学教务管理系统微信公众号”为例
查看>>
Css:背景色透明,内容不透明之终极方法!兼容所有浏览器
查看>>
我们前端跟后端是怎么合作的
查看>>
mysql存储过程
查看>>
洛谷P2556 [AHOI2002] 黑白图像压缩 [模拟]
查看>>