1145 Hashing - Average Search Time(25 分)
The task of this problem is simple: insert a sequence of distinct positive integers into a hash table first. Then try to find another sequence of integer keys from the table and output the average search time (the number of comparisons made to find whether or not the key is in the table). 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.
Input Specification:
Each input file contains one test case. For each case, the first line contains 3 positive numbers: MSize, N, and M, which are the user-defined table size, the number of input numbers, and the number of keys to be found, respectively. All the three numbers are no more than 104. Then N distinct positive integers are given in the next line, followed by M positive integer keys in the next line. All the numbers in a line are separated by a space and are no more than 105.
Output Specification:
For each test case, in case it is impossible to insert some number, print in a line X cannot be inserted.
where X
is the input number. Finally print in a line the average search time for all the M keys, accurate up to 1 decimal place.
Sample Input:
4 5 4
10 6 4 15 11
11 4 15 2
Sample Output:
15 cannot be inserted.
2.8
冲突后二次探测查找size-1次没找到说明表中没有该元素 (详情),加上第一次冲突应该算比较了size次,这题却算作size+1次,不是很理解。
#include<stdio.h>
#include<unordered_set>
#include<algorithm>
using namespace std;
int msize,n,m;
int size;
int q[10005];
int htable[15000];
bool isprime(int i){
if(i==2||i==3)return true;
if(i<2)return false;
for(int j=2;j*j<=i;j++){
if(i%j==0)
return false;
}
return true;
}
int getsize(){
int i=msize;
for(;!isprime(i);i++)
;
return i;
}
bool insertt(int t){
for(int i=0;i<size;i++){
if(htable[(t+i*i)%size]<0){
htable[(t+i*i)%size]=t;
return true;
}
}
return false;
}
int findt(int t){
for(int i=0;i<size;i++){
if(htable[(t+i*i)%size]==t||htable[(t+i*i)%size]<0){
return i+1;
}
}
return size+1;
}
int main(){
scanf("%d %d %d",&msize,&n,&m);
fill(htable,htable+15000,-1);
size=getsize();
for(int i=0;i<n;i++){
int t;
scanf("%d",&t);
if(!insertt(t)){
printf("%d cannot be inserted.\n",t);
}
}
int count=0;
for(int i=0;i<m;i++){
int t;
scanf("%d",&t);
count+=findt(t);
}
printf("%.1f",count*1.0/m);
return 0;
}