码迷,mamicode.com
首页 > 其他好文 > 详细

[模板] 哈希表

时间:2018-12-20 11:51:22      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:val   for   mod   code   int   init   hash   turn   ini   

写插头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;

[模板] 哈希表

标签:val   for   mod   code   int   init   hash   turn   ini   

原文地址:https://www.cnblogs.com/ubospica/p/10147951.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!