手寫堆、哈希表

1、手寫堆ide

(搭配手寫swap)spa

系統自帶的常數很大。code

小根堆。blog

il void swap(int &x,int &y){x^=y^=x^=y;}
struct Heap{
    int f[N],tot;
    il int size(){return tot;}
    il int top(){return f[1];}
    il void clear(){tot=0;}
    il void push(int x){
        f[++tot]=x;
        for(int i=tot;i;i>>=1){
            if((i>>1)>0&&f[i>>1]>f[i])swap(f[i>>1],f[i]);
            else break;
            /** 判斷(i>>1)>=1*/
        }
    }
    il void pop(){
        f[1]=f[tot--];
        for(int i=1,p;i<=tot;){
            p=i<<1;if(p>tot)break;
            /** 判斷p<=tot*/
            if((p|1)<=tot&&f[p|1]<f[p])p|=1;
            /** 判斷p|1<=tot*/
            if(f[p]<f[i])swap(f[p],f[i]),i=p;
            else break;
        }
    }
}
View Code

 

二、哈希表event

const int mod=7e5+1,N=1e5+5;
int head[mod],fir[N],to[N],cnt;
il int up(int x){
    return x<0?x+mod:x;//防止負數
}
il int ins(int x){
    rg int t=up(x%mod);
    for(int i=head[t];i;i=fir[i]){
        if(to[i]==x)return i;//i是離散化後的值(離散不按照大小,只是新建對應值)
    }
    to[++cnt]=x;fir[cnt]=head[t];
    return head[t]=cnt;
}
View Code

 模數:(質數)class

1373137cli

2379239sed

相關文章
相關標籤/搜索