[模板] 哈希表

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;

以上是关于[模板] 哈希表的主要内容,如果未能解决你的问题,请参考以下文章

unordered_map和unordered_set的模拟实现

HashMap原理:哈希函数的设计

[模板] 哈希表

如何将对象参数作为哈希表传递给 json arm 模板?

840. 模拟哈希表(模板)

STL详解(十三)—— 用一个哈希表同时封装出unordered_map和unordered_set