PAT甲级1145 【Hashing - Average Search Time】

哈希的应用,Quadratic probing(二次方正向探测)解决冲突,最需要注意的一点是如果搜索的位置为空,则不要往下搜索。。WA哭

#include<iostream>
#include<stdio.h>
#include<cmath>
#include<algorithm>
using namespace std;
const int maxn = 1e4+10; 
int res[maxn];
int msize, n, m, num;
double tot = 0;
bool isPrime(int x){
    if(x < 2) return false;
    for(int i = 2; i<=sqrt(x); i++)
        if(x % i == 0) return false;
    return true;
}
bool insert(int x){
    int idx = x%msize, cnt = 0;
    while(cnt < msize){
        int key = idx+cnt*cnt;
        key %= msize;
        if(res[key] == 0){
            res[key] = x;
            return true;
        }
        cnt++;
    }
    return false;
}
void search(int x){
    int idx = x%msize, cnt = 0;
    while(cnt < msize){
        int key = idx+cnt*cnt;
        key %= msize;
        tot++;
        if(res[key] == 0) return ;//如果所搜位置为空就没必要往下继续搜了。。 
        if(res[key] != x){
            cnt++;
        }
        else {
            return;
        }
    }
    tot++;
}
int main(){
    //freopen("in.txt", "r", stdin);
    ios::sync_with_stdio(false);
    cin >> msize >> n >> m; 
    while(!isPrime(msize)){
        msize++;
    }
    for(int i = 0; i<n; i++){
        cin >> num;
        if(!insert(num))
            printf("%d cannot be inserted.\n", num);
    }
    for(int i = 0; i<m; i++){
        cin >> num;
        search(num);
    }
    printf("%.1f", tot/m);
    return 0;
}
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值