PAT1078 Hashing (25 分)

The task of this problem is simple: insert a sequence of distinct positive integers into a hash table, and output the positions of the input numbers. The hash function is defined to be H(key)=key%TSize where TSize is the maximum size of the hash table. Quadratic probing (with positive increments only) is used to solve the collisions.

Note that the table size is better to be prime. If the maximum size given by the user is not prime, you must re-define the table size to be the smallest prime number which is larger than the size given by the user.

#include<bits/stdc++.h>
using namespace std;
int a[12000]={0};
vector<int> p,v;
int main(){
    int i,j,c1,c2,m,s;
    for(i=2;i<=12000;++i){
        if(a[i]==0){a[i]=1;p.push_back(i);}
        for(j=0;j<p.size();++j){
            if(p[j]*i<=12000)a[p[j]*i]=1;
            if(i%p[j]==0)break;
        }
    }
    cin>>c1>>c2;
    auto x=upper_bound(p.begin(),p.end(),c1);
    if(c1!=*(x-1)||x==p.begin())c1=*x;//printf("\n%d",c1);
    v.resize(c1,0);
    for(i=0;i<c2;++i){
        scanf("%d",&m);
        for(j=0;j<c1;++j){
            s=(m+j*j)%c1;
            if(v[s]==0){
                v[s]=1;    
                printf("%d",s);
                break;
            }
        }
        if(j==c1)printf("-");
        if(i!=c2-1)printf(" ");
    }
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值