字串關鍵字的雜湊對映(25 分)
阿新 • • 發佈:2019-02-02
這個題目,資料結構的課本上是有的,當你發生衝突的時候,是可以用平方探測法解決的 這個題目就是需要注意一下,當你需要減的時候,需要防止一下負數取模的
給定一系列由大寫英文字母組成的字串關鍵字和素數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; }