数据结构实验之查找七:线性之哈希表

Problem Description

根据给定的一系列整数关键字和素数p,用除留余数法定义hash函数H(Key)=Key%p,将关键字映射到长度为p的哈希表中,用线性探测法解决冲突。重复关键字放在hash表中的同一位置。

Input

连续输入多组数据,每组输入数据第一行为两个正整数N(N <= 1500)和p(p >= N的最小素数),N是关键字总数,p是hash表长度,第2行给出N个正整数关键字,数字间以空格间隔。

Output

输出每个关键字在hash表中的位置,以空格间隔。注意最后一个数字后面不要有空格。

Example Input

5 5
21 21 21 21 21
4 5
24 15 61 88
4 5
24 39 61 15
5 5
24 39 61 15 39

Example Output

1 1 1 1 1
4 0 1 3
4 0 1 2

4 0 1 2 0

#include #include

int main() {     int n, p, x, t, t1, j, i, len;     int hash[2000], s[2000];     while(scanf("%d%d", &n, &p) != EOF)     {         memset(hash, -1, sizeof(hash));         len = 0;         for(i = 0; i < n; i++)         {             scanf("%d", &x);             t = x % p;             if(hash[t] == -1 || hash[t] == x)                 hash[t] = x;             else             {                 j = 1;                 t1 = t;                 while(hash[t1] != -1 && hash[t1] != x)                 {                     t1 = (t + j) % p;                     j++;                 }                 t = t1;                 hash[t] = x;             }             s[len++] = t;         }         for(i = 0; i < len; i++)             printf("%d%c", s[i], i==len-1?'\n':' ');     }     return 0; }

你可能感兴趣的:(数据结构)