【C++】STL之unoerdered_map、unordered_set类源码剖析_unodermap 源码-程序员宅基地

技术标签: c++  unordered_set  unordered_map  STL  哈希  

目录

概述

源码

HashTable.h

UnorderedMap.h

UnorderedSet.h

test.cpp


概述

STL标准模板库中的map、set的底层数据结构是红黑树,会在数据插入时自动排序,unordered_map、unordered_set的底层数据结构是哈希表,不做排序,根据哈希值进行映射。

哈希算法可见这篇文章:

【C++】哈希_种花家de小红帽的博客-程序员宅基地

unordered_map、unordered_set的特性与map、set基本一样,数据插入和删除的效率都差不多,但是unordered_map、unordered_set的查询效率远高于map、set。

unordered_map、unordered_set的封装与map、set的封装很相似。

封装细节、迭代器设计具体可见这篇文章:

【C++】STL之map、set类源码剖析_种花家de小红帽的博客-程序员宅基地

源码

HashTable.h

#pragma once
#include <iostream>
#include <vector>

// 仿函数
template<class K>
struct HashFunc
{
	size_t operator()(const K& key)
	{
		return (size_t)key;
	}
};

// 特化
template<>
struct HashFunc<std::string>
{
	size_t operator()(const std::string& str)
	{
		size_t res = 0;
		for (const auto& ch : str)
		{
			res *= 131;		// 随机数取值,避免哈希冲突
			res += ch;
		}
		return res;
	}
};

// 节点
template<class T>
struct HashNode
{
	T _data;
	HashNode<T>* next;

	HashNode(const T& data)
		: _data(data), next(nullptr)
	{}
};

// 前置声明
template<class K, class T, class Hash, class KofT>
class HashTable;

// 迭代器
template<class K, class T, class Ref, class Ptr, class Hash, class KofT>
struct Iterator
{
	typedef HashNode<T> Node;
	typedef Iterator<K, T, Ref, Ptr, Hash, KofT> Self;
	typedef HashTable<K, T, Hash, KofT> HT;

	Node* _node;
	HT* _ht;
	Iterator(Node* node, HT* ht)
		: _node(node), _ht(ht)
	{}

	Ref operator*()
	{
		return _node->_data;
	}
	Ptr operator->()
	{
		return &_node->_data;
	}

	bool operator!=(const Self& s)const
	{
		return _node != s._node;
	}

	Self& operator++()
	{
		if (_node->next)
		{
			_node = _node->next;
		}
		else
		{
			// 寻找下一个桶的第一个节点
			KofT kot;
			Hash hs;
			size_t pos = hs(kot(_node->_data)) % _ht->_table.size();
			++pos;
			while (pos < _ht->_table.size())
			{
				if (_ht->_table[pos] == nullptr)
				{
					++pos;
				}
				else
				{
					_node = _ht->_table[pos];
					break;
				}
			}
			if (pos == _ht->_table.size())
			{
				_node = nullptr;
			}
		}

		return *this;
	}
	Self operator++(int)
	{
		Self tmp(*this);
		++(*this);
		return tmp;
	}
};

// 哈希桶
template<class K, class T, class Hash, class KofT>
class HashTable
{
	typedef HashNode<T> Node;

	template<class K, class T, class Ref, class Ptr, class Hash, class KofT>
	friend struct Iterator;

public:
	typedef Iterator<K, T, T&, T*, Hash, KofT> iterator;
	typedef Iterator<K, T, const T&, const T*, Hash, KofT> const_iterator;

	iterator begin()
	{
		for (int i = 0; i < _table.size(); ++i)
		{
			if (_table[i] != nullptr)
			{
				return iterator(_table[i], this);
			}
		}
		return iterator(nullptr, this);
	}
	iterator end()
	{
		return iterator(nullptr, this);
	}

	const_iterator begin()const
	{
		for (int i = 0; i < _table.size(); ++i)
		{
			if (_table[i] != nullptr)
			{
				return const_iterator(_table[i], this);
			}
		}
		return const_iterator(nullptr, this);
	}
	const_iterator end()const
	{
		return const_iterator(nullptr, this);
	}

	// 迭代器拷贝构造
	template<class InputIterator>
	HashTable(InputIterator first, InputIterator last)
	{
		_n = 0;
		_table.resize(10);
		while (first != last)
		{
			insert(*first);
			++first;
		}
	}

	void swap(HashTable<K, T, Hash, KofT>& ht)
	{
		std::swap(_table, ht._table);
		std::swap(_n, ht._n);
	}

	HashTable(const HashTable<K, T, Hash, KofT>& ht)
	{
		HashTable<K, T, Hash, KofT> tmp(ht.begin(), ht.end());
		swap(tmp);
	}

	HashTable<K, T, Hash, KofT>& operator=(HashTable<K, T, Hash, KofT> ht)
	{
		swap(ht);
		return *this;
	}

	HashTable()
		: _n(0)
	{
		_table.resize(10, nullptr);
	}

	~HashTable()
	{
		for (int i = 0; i < _table.size(); ++i)
		{
			Node* cur = _table[i];
			while (cur)
			{
				Node* next = cur->next;
				delete cur;
				cur = next;
			}
			_table[i] = nullptr;
		}
	}

	std::pair<iterator, bool> insert(const T& data)
	{
		KofT koft;
		iterator it = find(koft(data));
		if (it != end())
		{
			return std::make_pair(it, false);
		}

		// 扩容, 平衡因子为 1
		if (_n == _table.size())
		{
			std::vector<Node*> newTable;
			newTable.resize(_table.size() * 2, nullptr);
			for (int i = 0; i < _table.size(); ++i)
			{
				Node* cur = _table[i];
				while (cur)
				{
					Node* next = cur->next;
					size_t pos = Hash()(koft(cur->_data)) % newTable.size();
					if (newTable[pos] == nullptr)
					{
						newTable[pos] = cur;
						cur->next = nullptr;
					}
					else
					{
						cur->next = newTable[pos];
						newTable[pos] = cur;
					}
					cur = next;
				}
			}
			_table.swap(newTable);
		}

		// 插入节点
		Node* newNode = new Node(data);
		size_t pos = Hash()(koft(data)) % _table.size();
		newNode->next = _table[pos];
		_table[pos] = newNode;
		++_n;

		return std::make_pair(iterator(newNode, this), true);
	}

	iterator find(const K& key)
	{
		size_t pos = Hash()(key) % _table.size();
		Node* cur = _table[pos];
		while (cur)
		{
			if (KofT()(cur->_data) == key)
			{
				return iterator(cur, this);
			}
			cur = cur->next;
		}

		return iterator(nullptr, this);
	}

	bool erase(const K& key)
	{
		iterator it = find(key);
		if (it != end())
		{
			size_t pos = Hash()(key) % _table.size();
			Node* cur = _table[pos];
			if (cur == it._node)
			{
				cur = it._node->next;
				delete it._node;
				it._node = nullptr;
			}
			else
			{
				while (cur->next != it._node)
				{
					cur = cur->next;
				}
				cur->next = it._node->next;
				delete it._node;
				it._node = nullptr;
			}
			--_n;
			return true;
		}
		else
		{
			return false;
		}
	}

private:
	std::vector<Node*> _table;
	size_t _n;
};

UnorderedMap.h

#pragma once
#include "HashTable.h"

template<class K, class V, class Hash = HashFunc<K>>
class UnorderedMap
{
	struct MapKofT
	{
		const K& operator()(const std::pair<const K, V>& kv)
		{
			return kv.first;
		}
	};
public:
	typedef typename HashTable<K, std::pair<const K, V>, Hash, MapKofT>::iterator iterator;
	typedef typename HashTable<K, std::pair<const K, V>, Hash, MapKofT>::const_iterator const_iterator;

	iterator begin()
	{
		return _ht.begin();
	}
	iterator end()
	{
		return _ht.end();
	}

	const_iterator begin()const
	{
		return _ht.begin();
	}
	const_iterator end()const
	{
		return _ht.end();
	}

	// 迭代器构造
	template<class InputIterator>
	UnorderedMap(InputIterator first, InputIterator last)
	{
		_ht = HashTable<K, std::pair<const K, V>, Hash, MapKofT>(first, last);
	}

	UnorderedMap(UnorderedMap<K, V>& uMap)
	{
		_ht = HashTable<K, std::pair<const K, V>, Hash, MapKofT>(uMap.begin(), uMap.end());
	}

	UnorderedMap<K, V>& operator=(UnorderedMap<K, V>& uMap)
	{
		_ht = HashTable<K, std::pair<const K, V>, Hash, MapKofT>(uMap.begin(), uMap.end());
		return *this;
	}

	UnorderedMap()
		: _ht(HashTable<K, std::pair<const K, V>, Hash, MapKofT>())
	{}

	std::pair<iterator, bool> insert(const std::pair<K, V>& kv)
	{
		return _ht.insert(kv);
	}

	iterator find(const K& key)
	{
		return _ht.find(key);
	}

	bool erase(const K& key)
	{
		return _ht.erase(key);
	}

	V& operator[](const K& key)
	{
		std::pair<iterator, bool> ret = _ht.insert(std::make_pair(key, V()));
		return ret.first->second;
	}

private:
	HashTable<K, std::pair<const K, V>, Hash, MapKofT> _ht;
};

UnorderedSet.h

#pragma once
#include "HashTable.h"

template<class K, class Hash = HashFunc<K>>
class UnorderedSet
{
	struct SetKofT
	{
		const K& operator()(const K& key)
		{
			return key;
		}
	};
public:
	typedef typename HashTable<K, K, Hash, SetKofT>::iterator iterator;
	typedef typename HashTable<K, K, Hash, SetKofT>::const_iterator const_iterator;

	iterator begin()
	{
		return _ht.begin();
	}
	iterator end()
	{
		return _ht.end();
	}

	const_iterator begin()const
	{
		return _ht.begin();
	}
	const_iterator end()const
	{
		return _ht.end();
	}

	// 迭代器构造
	template<class InputIterator>
	UnorderedSet(InputIterator first, InputIterator last)
	{
		_ht = HashTable<K, K, Hash, SetKofT>(first, last);
	}

	UnorderedSet(UnorderedSet<K>& uSet)
	{
		_ht = HashTable<K, K, Hash, SetKofT>(uSet.begin(), uSet.end());
	}

	UnorderedSet<K>& operator=(UnorderedSet<K>& uSet)
	{
		_ht = HashTable<K, K, Hash, SetKofT>(uSet.begin(), uSet.end());
		return *this;
	}

	UnorderedSet()
		: _ht(HashTable<K, K, Hash, SetKofT>())
	{}

	std::pair<iterator, bool> insert(const K& key)
	{
		std::pair<iterator, bool> ret = _ht.insert(key);
		return std::make_pair(ret.first, ret.second);
	}

	iterator find(const K& key)
	{
		return _ht.find(key);
	}

	bool erase(const K& key)
	{
		return _ht.erase(key);
	}

private:
	HashTable<K, K, Hash, SetKofT> _ht;
};

test.cpp

#include "UnorderedMap.h"
#include "UnorderedSet.h"
#include <iostream>
using namespace std;

void unordered_map_test1()
{
	int arr[] = { 34, 36, 12, 54, 5, 22, 65, 32, 13, 4, 1, 52 };

	cout << "uMap1:" << endl;
	UnorderedMap<int, int> uMap1;
	for (const auto& e : arr)
	{
		uMap1.insert(make_pair(e, e));
	}
	for (const auto& e : uMap1)
	{
		cout << e.first << ": " << e.second << endl;
	}
	cout << endl;

	cout << uMap1.find(32)._node << endl;
	cout << uMap1.find(42)._node << endl;
	cout << uMap1.find(52)._node << endl;
	uMap1.erase(32);
	cout << uMap1.find(32)._node << endl;
	cout << uMap1.find(42)._node << endl;
	cout << uMap1.find(52)._node << endl;

	UnorderedMap<int, int>::iterator it1 = uMap1.begin();
	while (it1 != uMap1.end())
	{
		cout << it1._node->_data.first << ": " << it1._node->_data.second << endl;
		++it1;
	}
	cout << endl;

	// 迭代器构造
	cout << "uMap2:" << endl;
	UnorderedMap<int, int> uMap2(uMap1.begin(), uMap1.end());
	UnorderedMap<int, int>::iterator it2 = uMap2.begin();
	while (it2 != uMap2.end())
	{
		cout << (*it2).first << ": " << (*it2).second << endl;
		++it2;
	}
	cout << endl;

	// 拷贝构造
	cout << "uMap3:" << endl;
	UnorderedMap<int, int> uMap3(uMap2);
	UnorderedMap<int, int>::iterator it3 = uMap3.begin();
	while (it3 != uMap3.end())
	{
		cout << (*it3).first << ": " << (*it3).second << endl;
		it3++;
	}
	cout << endl;
}

void unordered_map_test2()
{
	std::vector<std::string> food = {
		"蛋糕", "西瓜", "啤酒", "苹果", "香蕉", "蛋糕", "牛肉",
		"西瓜", "苹果", "啤酒", "西瓜", "牛肉", "蛋糕", "蛋糕",
		"西瓜", "西瓜", "牛肉", "苹果", "香蕉", "蛋糕", "西瓜"
	};

	UnorderedMap<std::string, int> foodMap;
	for (auto& e : food)
	{
		foodMap[e]++;
	}
	for (auto& e : foodMap)
	{
		std::cout << e.first << ": " << e.second << std::endl;
	}
	std::cout << std::endl;
}

void unordered_set_test()
{
	int arr[] = { 34, 36, 12, 54, 5, 22, 65, 32, 13, 4, 1, 52 };

	cout << "uSet1:" << endl;
	UnorderedSet<int> uSet1;
	for (const auto& e : arr)
	{
		uSet1.insert(e);
	}
	for (auto& e : uSet1)
	{
		cout << e << ' ';
	}
	cout << endl;

	cout << "uSet2:" << endl;
	UnorderedSet<int> uSet2(uSet1.begin(), uSet1.end());
	for (auto& e : uSet2)
	{
		cout << e << ' ';
	}
	cout << endl;

	cout << "uSet3:" << endl;
	UnorderedSet<int> uSet3(uSet2);
	UnorderedSet<int>::iterator it3 = uSet3.begin();
	while (it3 != uSet3.end())
	{
		cout << *it3 << ' ';
		++it3;
	}
	cout << endl;
}

int main()
{
	unordered_map_test1();
	unordered_map_test2();
	unordered_set_test();

	return 0;
}

版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://blog.csdn.net/phoenixFlyzzz/article/details/130619944

智能推荐

Pulsar 社区周报|2021-06-21~2021-06-27-程序员宅基地

文章浏览阅读273次。关于 Apache PulsarApache Pulsar 是 Apache 软件基金会顶级项目,是下一代云原生分布式消息流平台,集消息、存储、轻量化函数式计算为一体,采用计算与存储分离架..._pulsar resourcegroup

PHP5.6通过CURL上传图片@符无效的兼容问题_php5.6 curlopt_postfields --data-binary图片-程序员宅基地

文章浏览阅读738次。PHP5.6通过CURL上传图片@符无效的兼容问题标签: curl上传图片CURLFile2016-04-03 17:15 787人阅读 评论(0) 收藏 举报 分类:php(41) 版权声明:本文为博主原创文章,未经博主允许不得转载。 http://blog.csdn.net/zhouzme今天本来想试试一个图片云的AP_php5.6 curlopt_postfields --data-binary图片

Jquery+ajax上传文件_jquery ajax 上传 没有文件-程序员宅基地

文章浏览阅读986次。前言:之前做文件操作都是直接通过表单提交的,这几天做了一个前台用jquery+ajax上传文件,后台用MVC接受文件,由于第一次用jquery+ajax做上传文件,所以用来写个博客。方便以后直接用。上代码: //表单 <form enctype="multipart/form-data"> ..._jquery ajax 上传 没有文件

服务器怎么清除日志文件,如何清理服务器数据库日志文件-程序员宅基地

文章浏览阅读2.3k次。如何清理服务器数据库日志文件 内容精选换一换在本容灾方案中,线下的生产数据中心有两台MySQL,需要配置为主备关系,以确保线下仅MySQL故障时,可直接在线下切换到备节点,因此,需要先配置业务端内部的容灾。打开MySQL的配置文件。#vi /etc/my.cnf#vi /etc/my.cnf修改内容。按照如下字段对配置文件中[mysqld]之下的内容进行增加或修改。参数说明如下:s如何清理服务器数..._服务器日志清除高手

eNSP命令大全(所有命令)-程序员宅基地

文章浏览阅读3.6w次,点赞64次,收藏462次。eNSP命令大全(所有命令)命令符从用户视图切换到系统视图 system–view 从系统视图切换到用户视图 quit连入接口命令 interface IP地址、子网掩码配置命令 ip address接口IP信息查看命令 display ip interface briefIPv4路由表信息查询命令 display ip routing–table配置完成退回视图界面命令 return 命令自动补全快捷键【Tab】快捷键查看命令 displayhotkey路由名称修改命令 sysname _ensp命令大全

美团前端二面必会手写面试题汇总_美团外包前端面试题-程序员宅基地

文章浏览阅读654次。考点:数组去重方法汇总1. 双层 for 循环2. Array.filter() 加 indexOf/includes3. ES6 中的 Set 去重4. reduce 实现对象数组去重复实现观察者模式观察者需要放到被观察者中,被观察者的状态变化需要通知观察者 我变化了 内部也是基于发布订阅模式,收集观察者,状态变化后要主动通知观察者实现一个链表结构链表结构看图理解next层级参考前端手写面试题详细解答第一版 时间复杂度为 O(n^2)第二版 标记法 / 自定义属性法 时间_美团外包前端面试题

随便推点

多系统引导启动盘“完美解决”方案——Ventoy工具_启动盘ventoy-程序员宅基地

文章浏览阅读2.2w次,点赞17次,收藏40次。前文续绍 鄙人小白,学识甚浅,望文章不周的部分,大侠给予提示改正。我会以非专业性写这篇文章,使更多的小白学到简单易懂的知识。U盘做启动盘我相信大家再熟悉不过了,但是一般情况下,一个U盘只能存在一个启动镜像。如果想要安装其它系统的话,需要重新制作启动盘,所以该文章主要为了解决一下问题:如何解决一个U盘存在多个启动镜像U盘存在多个启动镜像,如何完美引导Bios和UEFI启动如何完整保留镜像在启动盘里,方面以后好复制给他人用如何在完美引导的情况下,将U盘的某个普通分区,正常使用并拷入4G以上的文件_启动盘ventoy

OpenStack基础原理详解_opencliend 底层原理-程序员宅基地

文章浏览阅读2w次,点赞15次,收藏124次。OpenStack主要分为Nova.Glance.Swift,Cinder等,实际上三一组离散服务组成的Nova主要功能:实现实例的生命周期的管理 调动管理平台的网络、存储等资源 提供了统一风格的 RestAPI接口 支持KVM、VMware等透明的hypervisor 各个模块之间通过消息队列来进行消息传递常用术语:KVM:内核虚拟化,OpenStack默认的是Hypersvisor Q_opencliend 底层原理

Java Web——Servlet初探_web-common-servlet-程序员宅基地

文章浏览阅读7.5k次,点赞4次,收藏2次。Java Web——Servlet初探_web-common-servlet

grafana 部署安装步骤_graggan官网-程序员宅基地

文章浏览阅读9.6k次,点赞2次,收藏13次。Grafana安装部署Grafana是领先的开源可视化软件工具,无论您的数据在哪里,或者它所处的数据库是什么类型,您都可以将它与Grafana结合在一起,做成精美的可视化图表Grafana官网:https://grafana.com/Grafana官方手册:https://grafana.com/docs/注意:务必要保证zabbix-server 和grafana server 这两台服务器的时间保持同步,否则 grafana server 是不会出图的!1,导入yum源,安装grafana,并_graggan官网

LWIP和DDR3配合实现 数据接收和发送(zedboard)_复旦微 lwip ddr数据输出-程序员宅基地

文章浏览阅读4.7k次。在LWIP的基础上,在Echo.c文件中的recv_callback()函数中,显示以太网的数据存储。添加zynq对DDR3的支持文件和首地址定义(可在xparameters.h中查询)#include"xparameters.h"#include"xparameters_ps.h"#include"xil_io.h"#define DDR_BASEARDDR _复旦微 lwip ddr数据输出

python回调函数能做什么?,程序员如何应对中年危机-程序员宅基地

文章浏览阅读272次,点赞5次,收藏7次。④ Python基础入门、爬虫、web开发、大数据分析方面的视频(适合小白学习)④ Python基础入门、爬虫、web开发、大数据分析方面的视频(适合小白学习)除了上面的使用实例以外,回调函数还可以使用带参数的传递形式。如此,像上面这样执行就可以完成一个简单的回调函数的使用。③ 项目源码(四五十个有趣且经典的练手项目及源码)③ 项目源码(四五十个有趣且经典的练手项目及源码)⑤ Python学习路线图(告别不入流的学习)⑤ Python学习路线图(告别不入流的学习)② Python标准库资料(最全中文版)

推荐文章

热门文章

相关标签