[模板] 哈希表
Posted ubospica
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[模板] 哈希表相关的知识,希望对你有一定的参考价值。
写插头dp的时候写的。。
struct thash{
int val[nmod];
struct te{int st,pr;}e[nmod];
int hd[nmod],pe=0;
void adde(int f,int st){e[++pe]=(te){st,hd[f]};hd[f]=pe;}
void init(){clear(val),clear(hd),pe=0;}
int& get(int st){
int p=st%nmod;
for(int i=hd[p];i;i=e[i].pr){
if(e[i].st==st)return val[i];
}
adde(p,st);
return val[hd[p]];
}
}table;
以上是关于[模板] 哈希表的主要内容,如果未能解决你的问题,请参考以下文章