博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C++ 哈希表
阅读量:5237 次
发布时间:2019-06-14

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

从2011年开始,C++支持非排序的unordered_map和unordered_set(原先的map和set都是通过有序结构实现的)

下面是一些性能上的测试

#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;int main(){ int n=100000; vector
vec; srand(unsigned(time(0))); for(int i=0;i
tm; unordered_set
hm; start=clock(); for(int i=0;i

 

unordered_set:7417

set:1228
unordered_set:511
set:1050

#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;int main(){ int n=100000; vector
vec; srand(unsigned(time(0))); for(int i=0;i
tm; unordered_map
hm; start=clock(); for(int i=0;i

unordered_map:7894

map:1722
unordered_map:497
map:959

 

对自定类型使用hash表

class Pair{  public:  int a;  int b;  Pair(){}  Pair(int a1,int b1){    a=a1;    b=b1;  }  bool operator==(const Pair& p)const{	return a==p.a&&b==p.b;  }};struct Hash_Pair{  size_t operator()(const Pair &p) const  {    double temp=p.a;    temp+=p.b*2147483647.0;    hash
ht;//直接用了已经提供的hah函数,没有自己编写hash    return ht(temp);  }};struct Equal_Pair{  bool operator()(const Pair &left, const Pair &right) const  {    return left.a==right.a&&left.b==right.b;  }};unordered_set
set;

 

转载于:https://www.cnblogs.com/superzrx/p/3329815.html

你可能感兴趣的文章
getopt_long
查看>>
TensorFlow MNIST CNN 代码
查看>>
javascript之Style物
查看>>
JSON跨域解决方案收集
查看>>
SSH框架整合总结
查看>>
图的深度优先遍历
查看>>
C# 之 提高WebService性能大数据量网络传输处理
查看>>
md5sum命令详解
查看>>
[bzoj1004] [HNOI2008] Cards
查看>>
应该是实例化对象的没有对属性赋值时,自动赋值为null,但不是空指针对象引用...
查看>>
原生HttpClient详细使用示例
查看>>
几道面试题
查看>>
Factory Design Pattern
查看>>
python中贪婪与非贪婪
查看>>
guava API整理
查看>>
无锁编程笔记
查看>>
jquery mobile
查看>>
如何在vue单页应用中使用百度地图
查看>>
Springboot使用步骤
查看>>
Spring属性注入
查看>>