0
在我問這個問題之前,我應該做更多的研究,但是我對在線搜索感到沮喪。實現散列表,插入導致「範圍」錯誤的函數
Im做學校裏的功課,它包括實現一個哈希表,所以我嘗試用鏈接這樣
內Hashtable.h
private:
Node **buckets; //trying to create an array of pointers
內Hashtable.cpp
初始化桶Hashtable::Hashtable()
{
buckets=new Node*[1000];
}
void insert(char * value,int r, string previous)
{
int find=hashfcn(value);
Node *x =buckets[find];
}
即時使用代碼塊,我得到的錯誤是插入行
error: 'buckets' was not declared in this scope|
我不知道爲什麼它不是,有人可以幫助我,謝謝!