我有一个包含很多单词的文件,我正在尝试读取和存储。我正在尝试创建排序地图。
我在程序的开头声明了一个结构,它应该用于存储每个条目的信息。
typedef struct dictionary{ std::string word; unsigned char * hash; char *hex; } a_dictionary;
unordered_map<char * , a_dictionary * > Mymap;
这是我为保存单词而执行的代码,但由于某种原因 myMap 没有正确编写
if (myfile.is_open())
{
LARGE_INTEGER freq, before, after;
QueryPerformanceFrequency(&freq);
QueryPerformanceCounter(&before);
while ( myfile.good() )
{
getline (myfile,line);
a_dictionary * dic = new dictionary(); // after each line create
dic->word = line;
const char * c= line.c_str();
sha1::calc(c,line.length(), hash);//encrypts the word
dic->hash = hash;
sha1::toHexString(hash,hex_str);//encrypts the word
dic->hex = hex_str;
Mymap.insert(std::make_pair(hex_str, dic));
}
QueryPerformanceCounter(&after);
float fElapsed = static_cast<float>(after.QuadPart - before.QuadPart) / freq.QuadPart;
cout<<"Finished in "<<fElapsed;
我没有得到任何编译错误,当我在 while 循环中输出结构的变量时,它们会出现正常......但我的 unordered_map 永远不会被填充。