根据给定的一系列整数关键字和素数p,用除留余数法定义hash函数H(Key)=Key%p,将关键字映射到长度为p的哈希表中,用线性探测法解决冲突。重复关键字放在hash表中的同一位置。
连续输入多组数据,每组输入数据第一行为两个正整数N(N <= 1000)和p(p >= N的最小素数),N是关键字总数,p是hash表长度,第2行给出N个正整数关键字,数字间以空格间隔。
输出每个关键字在hash表中的位置,以空格间隔。注意最后一个数字后面不要有空格。
xam
#include<iostream> #include<bits/stdc++.h> using namespace std; int ha[100],a[100]; int main() { int n,p,i; while(cin>>n>>p) { memset(ha,0,sizeof(ha)); for(i=0;i<n;i++) { int j=1; cin>>a[i]; int t=a[i]%p; if(ha[t]==0)//普通类型,放余数位置 { ha[t]=a[i]; if(i==n-1) cout<<t<<endl; else cout<<t<<" "; } else//余数位置已经占有 { int q,d=j * j; while(ha[(t+d)%p]&& ha[(t-d)%p])//加平方数直到有空位 { j++; d=j*j; } if(ha[(t+d)%p]==0) { q=(t+d)%p; ha[q]=a[i]; } else if(ha[(t-d)%p]==0) { q=(t-d)%p; ha[q]=a[i]; } if(i==n-1) cout<<q<<endl; else cout<<q<<" "; } } } return 0; }