这个题目,数据结构的课本上是有的,当你发生冲突的时候,是可以用平方探测法解决的 这个题目就是需要注意一下,当你需要减的时候,需要防止一下负数取模的
给定一系列由大写英文字母组成的字符串关键字和素数P,用移位法定义的散列函数(将关键字Key中的最后3个字符映射为整数,每个字符占5位;再用除留余数法将整数映射到长度为P的散列表中。例如将字符串AZDEG
插入长度为1009的散列表中,我们首先将26个大写英文字母顺序映射到整数0~25;再通过移位将其映射为3;然后根据表长得到,即是该字符串的散列映射位置。
发生冲突时请用平方探测法解决。
输入格式:
输入第一行首先给出两个正整数N(≤)和P(≥的最小素数),分别为待插入的关键字总数、以及散列表的长度。第二行给出N个字符串关键字,每个长度不超过8位,其间以空格分隔。
输出格式:
在一行内输出每个字符串关键字在散列表中的位置。数字间以空格分隔,但行末尾不得有多余空格
#include <iostream>
#include <cstdio>
#include <cstring>
#include <cstdlib>
#include <algorithm>
#include <vector>
#include <map>
#include <queue>
#include <math.h>
#include <stack>
#include <utility>
#include <string>
#include <sstream>
#include <cstdlib>
#include <set>
#define LL long long
using namespace std;
const int INF = 0x3f3f3f3f;
const int maxn = 1000000 + 11;
int dir[4][2] = {{1,0},{0,1},{-1,0},{0,-1}};
string str;
int vis[maxn];
map<string,int> mp;
int m,n;
int main()
{
scanf("%d %d",&n,&m);
memset(vis,0,sizeof(vis));
for(int i = 1; i <= n; i++)
{
cin>>str;
int len = str.size();
int num = 0;
if(len == 1)
num += (str[0] - 'A');
else if(len == 2)
num = 32 *(str[0] - 'A') + str[1] - 'A';
else
{
for(int j = 3; j >= 1; --j)
{
int pos = len - j;
num = num * 32 + str[pos] - 'A';
}
}
num %= m;
if(mp[str] == 0 && vis[num])
{
for(int t = 1; t < maxn; t++)
{
if(!vis[(num + t * t)%m])
{
num = (num + t * t)%m;
vis[num] = 1;
mp[str] = num;
printf("%d",num);
break;
}
else if(!vis[(num-t*t+m)%m])
{
num = (num - t * t + m)%m;
vis[num] = 1;
mp[str] = num;
printf("%d",num);
break;
}
}
}
else
{
num %= m;
mp[str] = num;
printf("%d",num);
vis[num] = 1;
}
if(i < n)
putchar(' ');
else
puts("");
}
return 0;
}