#include <iostream>
#include <vector>
#include <string>
#include <math.h>
using namespace std;
struct Node{
string data;
Node* next;
Node(){
data = "";
next = NULL;
}
};
int computeHash(string s, int m){
int p = 1000000007;
int x = 263;
unsigned long long sum = 0;
unsigned long long val = 0;
for(int i = 0; i < s.length(); i++){
val = pow(x, i);
sum = (sum + s[i] * val) % p;
}
sum = sum % m;
return sum;
}
int main(){
int buckets;
cin >> buckets;
int n;
cin >> n;
string tag;
string s;
vector< vector<string> > myStore(n);
for(int i = 0; i < n; i++){
cin >> s;
myStore.at(i).push_back(s);
cin >> tag;
myStore.at(i).push_back(tag);
}
Node** arr= new Node*[buckets];
for(int i = 0; i < n; i++){
if(!myStore[i][0].compare("add")){
s = myStore[i][1];
int hash = computeHash(s,buckets);
cout << hash << endl;
}
}
return 0;
}
我想編寫一個程序來實現哈希與鏈。我試圖創建一個節點數組,以便我可以追加如果兩個字符串具有相同的散列值。節點陣列:初始化
但我有一個節點數組初始化的問題。我以爲數組中的節點將指向NULL。但是當我嘗試在gdb中調試時,它顯示了一些其他的東西。
有人可以解釋我對這種行爲發表評論的錯誤嗎?爲什麼arr 1和arr [2]指向一些內存位置而不是null。我也嘗試刪除默認的構造函數,但仍然得到相同的結果。任何幫助,將不勝感激。
對Node ** arr有問題,不與矢量。 – Phaneeth