我已经定义了一个结构ABC来包含一个int ID,字符串NAME,字符串LAST_NAME;
我的程序是这样的:从输入文件中读取一行。将每一行解析为名字和姓氏,并插入ABC结构中。此外,结构的ID由输入行的编号给出。
然后,将结构推送回矢量主列表。我也将这些散列到一个定义为vector<的散列表中。 vector>,使用名字和姓氏作为关键字。也就是说,
如果我的数据是:
加菲猫Cat
史努比狗
猫人
然后将关键字现金哈希值转换为包含Garfield Cat和Cat Man的向量。我再次使用push_back将结构插入哈希表。
问题是,当我在我的主列表上调用stable_sort时,我的哈希表因某些原因而受到影响。 我认为可能会发生这种情况,因为歌曲的排序方式不同,所以我尝试制作主列表的副本并对其进行排序,但它仍会影响哈希表,尽管原始主列表不受影响。
为什么会发生这种情况的任何想法?
编辑 - 已发布源代码:
这是主要的
ifstream infile;
infile.open(argv[1]);
string line;
vector<file> masterlist;
vector< vector<node> > keywords(512);
hashtable uniquekeywords(keywords,512);
int id=0;
while (getline(infile,line)){
file entry;
if (!line.empty() && line.find_first_not_of(" \t\r\n")!=line.npos){
id++;
string first=beforebar(line,0);
string last=afterbar(line);
entry.first=first;
entry.last=last;
entry.id=id;
masterlist.push_back(entry);
int pos=line.find_first_of("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890");
while (pos!=(int)line.npos){
string keyword=getword(line,pos);
node bucket(keyword,id);
bucket.addentry(entry);
uniquekeywords.insert(bucket);
}
}
}
以下是哈希表插入实现的片段:
struct node{
string keyword;
vector<file> entries;
int origin;
void addentry(file entry);
node(string keyword, int origin);
};
void hashtable::insert(node bucket){
int key=hashfunction(bucket.keyword);
if (table[key].empty()){
table[key].push_back(bucket);
numelt++;
}
else{
vector<node>::iterator it;
it=table[key].begin();
while(it!=table[key].end()){
if (compare((*it).keyword,bucket.keyword)==0 && (*it).origin!=bucket.origin){
(*it).entries.insert((*it).entries.end(),bucket.entries.begin(),bucket.entries.end());
(*it).origin=bucket.origin;
return;
}
it++;
}
node bucketcopy(bucket.keyword,bucket.origin);
table[key].push_back(bucket);
numelt++;
return;
}
}
答案 0 :(得分:2)
我们来看看。它可以是以下之一:
实际上,这些问题中的哪一个是问题的原因并不重要。你应该是std::map
容器而不是这个。如果由于某种原因你绝对必须使用哈希表实现,那么至少使用一个相对标准的哈希容器,例如:
std::unordered_map
在具有C ++ 11支持的编译器上提供boost::unordered_map
std::tr1::unordered_map
hash_map
提供了许多编译器请注意,上述内容按您应该尝试的顺序排序。