【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

智能推荐

while循环&CPU占用率高问题深入分析与解决方案_main函数使用while(1)循环cpu占用99-程序员宅基地

文章浏览阅读3.8k次,点赞9次,收藏28次。直接上一个工作中碰到的问题,另外一个系统开启多线程调用我这边的接口,然后我这边会开启多线程批量查询第三方接口并且返回给调用方。使用的是两三年前别人遗留下来的方法,放到线上后发现确实是可以正常取到结果,但是一旦调用,CPU占用就直接100%(部署环境是win server服务器)。因此查看了下相关的老代码并使用JProfiler查看发现是在某个while循环的时候有问题。具体项目代码就不贴了,类似于下面这段代码。​​​​​​while(flag) {//your code;}这里的flag._main函数使用while(1)循环cpu占用99

【无标题】jetbrains idea shift f6不生效_idea shift +f6快捷键不生效-程序员宅基地

文章浏览阅读347次。idea shift f6 快捷键无效_idea shift +f6快捷键不生效

node.js学习笔记之Node中的核心模块_node模块中有很多核心模块,以下不属于核心模块,使用时需下载的是-程序员宅基地

文章浏览阅读135次。Ecmacript 中没有DOM 和 BOM核心模块Node为JavaScript提供了很多服务器级别,这些API绝大多数都被包装到了一个具名和核心模块中了,例如文件操作的 fs 核心模块 ,http服务构建的http 模块 path 路径操作模块 os 操作系统信息模块// 用来获取机器信息的var os = require('os')// 用来操作路径的var path = require('path')// 获取当前机器的 CPU 信息console.log(os.cpus._node模块中有很多核心模块,以下不属于核心模块,使用时需下载的是

数学建模【SPSS 下载-安装、方差分析与回归分析的SPSS实现(软件概述、方差分析、回归分析)】_化工数学模型数据回归软件-程序员宅基地

文章浏览阅读10w+次,点赞435次,收藏3.4k次。SPSS 22 下载安装过程7.6 方差分析与回归分析的SPSS实现7.6.1 SPSS软件概述1 SPSS版本与安装2 SPSS界面3 SPSS特点4 SPSS数据7.6.2 SPSS与方差分析1 单因素方差分析2 双因素方差分析7.6.3 SPSS与回归分析SPSS回归分析过程牙膏价格问题的回归分析_化工数学模型数据回归软件

利用hutool实现邮件发送功能_hutool发送邮件-程序员宅基地

文章浏览阅读7.5k次。如何利用hutool工具包实现邮件发送功能呢?1、首先引入hutool依赖<dependency> <groupId>cn.hutool</groupId> <artifactId>hutool-all</artifactId> <version>5.7.19</version></dependency>2、编写邮件发送工具类package com.pc.c..._hutool发送邮件

docker安装elasticsearch,elasticsearch-head,kibana,ik分词器_docker安装kibana连接elasticsearch并且elasticsearch有密码-程序员宅基地

文章浏览阅读867次,点赞2次,收藏2次。docker安装elasticsearch,elasticsearch-head,kibana,ik分词器安装方式基本有两种,一种是pull的方式,一种是Dockerfile的方式,由于pull的方式pull下来后还需配置许多东西且不便于复用,个人比较喜欢使用Dockerfile的方式所有docker支持的镜像基本都在https://hub.docker.com/docker的官网上能找到合..._docker安装kibana连接elasticsearch并且elasticsearch有密码

随便推点

Python 攻克移动开发失败!_beeware-程序员宅基地

文章浏览阅读1.3w次,点赞57次,收藏92次。整理 | 郑丽媛出品 | CSDN(ID:CSDNnews)近年来,随着机器学习的兴起,有一门编程语言逐渐变得火热——Python。得益于其针对机器学习提供了大量开源框架和第三方模块,内置..._beeware

Swift4.0_Timer 的基本使用_swift timer 暂停-程序员宅基地

文章浏览阅读7.9k次。//// ViewController.swift// Day_10_Timer//// Created by dongqiangfei on 2018/10/15.// Copyright 2018年 飞飞. All rights reserved.//import UIKitclass ViewController: UIViewController { ..._swift timer 暂停

元素三大等待-程序员宅基地

文章浏览阅读986次,点赞2次,收藏2次。1.硬性等待让当前线程暂停执行,应用场景:代码执行速度太快了,但是UI元素没有立马加载出来,造成两者不同步,这时候就可以让代码等待一下,再去执行找元素的动作线程休眠,强制等待 Thread.sleep(long mills)package com.example.demo;import org.junit.jupiter.api.Test;import org.openqa.selenium.By;import org.openqa.selenium.firefox.Firefox.._元素三大等待

Java软件工程师职位分析_java岗位分析-程序员宅基地

文章浏览阅读3k次,点赞4次,收藏14次。Java软件工程师职位分析_java岗位分析

Java:Unreachable code的解决方法_java unreachable code-程序员宅基地

文章浏览阅读2k次。Java:Unreachable code的解决方法_java unreachable code

标签data-*自定义属性值和根据data属性值查找对应标签_如何根据data-*属性获取对应的标签对象-程序员宅基地

文章浏览阅读1w次。1、html中设置标签data-*的值 标题 11111 222222、点击获取当前标签的data-url的值$('dd').on('click', function() { var urlVal = $(this).data('ur_如何根据data-*属性获取对应的标签对象

推荐文章

热门文章

相关标签