SDUT-3377-->数据结构实验之查找五:平方之哈希表

来源:互联网 发布:老房子 顶层 知乎 编辑:程序博客网 时间:2024/05/19 22:48

数据结构实验之查找五:平方之哈希表

Time Limit: 400MSMemory Limit: 65536KB  

Problem Description

给定的一组无重复数据的正整数,根据给定的哈希函数建立其对应hash表,哈希函数是H(Key)=Key%P,P是哈希表表长,P是素数,处理冲突的方法采用平方探测方法,增量di=±i^2,i=1,2,3,...,m-1

Input

输入包含多组测试数据,到 EOF 结束。

每组数据的第1行给出两个正整数N(N <= 500)和P(P >= 2N的最小素数),N是要插入到哈希表的元素个数,P是哈希表表长;第2行给出N个无重复元素的正整数,数据之间用空格间隔。

Output

按输入数据的顺序输出各数在哈希表中的存储位置 (hash表下标从0开始),数据之间以空格间隔,以平方探测方法处理冲突。

Example Input

4 1110 6 4 159 1147 7 29 11 9 84 54 20 30

Example Output

10 6 4 53 7 8 0 9 6 10 2 1

Hint

Author

xam
参考代码:
#include <iostream>#include <stdio.h>#include <string.h>using namespace std;int a[1555];int ha[1555];int ans[1555];void Hash(int n,int p){    memset(ha,0,sizeof(ha));    for(int i=0; i<n; i++)    {        int pos = a[i]%p;        if(ha[pos] == 0)        {            ha[pos] = a[i];            ans[i] = pos;        }        else if(ha[pos] == a[i])        {            ans[i] = pos;        }        else if(ha[pos]!=a[i])        {            int r = -1;            for(int j=2;; j++)            {                int jj = j/2;                int di = (r*=-1)*jj*jj;                int t = (di+pos)%p;                if(t>=0&&t<p)                {                    if(ha[t] == 0)                    {                        ha[t] = a[i];                        ans[i] = t;                        break;                    }                    else if(ha[t] == a[i])                    {                        ans[i] = t;                        break;                    }                }            }        }    }}int main(){    int n,p;    while(scanf("%d%d",&n,&p)!=EOF)    {        for(int i=0; i<n; i++)        {            scanf("%d",&a[i]);        }        Hash(n,p);        for(int i=0; i<n; i++)        {            if(i == n-1)                printf("%d\n",ans[i]);            else                printf("%d ",ans[i]);        }    }    return 0;}

阅读全文
0 0