迭代时跳过相同的多图值

时间:2011-10-17 10:52:01

标签: c++ multimap

有没有什么好方法可以实现以下所需的输出,而无需删除相同的值或创建另一个列表/向量等?我正在尝试将在不同文档中找到的单词映射到其文档名称,如所需输出中所示。

#include <iostream>
#include <fstream>
#include <string>
#include <map>
#include <sstream>

using namespace std;

multimap<string,string> inverts;
multimap<string,string>::iterator mit;
multimap<string,string>::iterator rit;
pair<multimap<string,string>::iterator,multimap<string,string>::iterator> ret;

int main(int argc, char* argv[])
{
ifstream infile;

for(int i=1;i<argc;i++)
{
    char* fname=argv[i];
    char line[1024];
    string buff;
    infile.open(fname);

    while(infile.getline(line,1024))
    {
        stringstream ss(line);
        while(ss >> buff)
            inverts.insert(pair<string,string>(buff,fname));
    }

    infile.close();

}

for(mit=inverts.begin();mit!=inverts.end();mit++)
{
    string first=(*mit).first;
    cout<<first;
    ret=inverts.equal_range(first);

    for(rit=ret.first;rit!=ret.second;rit++)
        cout<<" "<<(*rit).second;
    cout<<endl;

}


return 0;

}

Output is:

> ./a.out A B
cat A
dog A B
dog A B
fox A B
fox A B
lion B

I need this output:

> ./a.out A B
cat A
dog A B
fox A B
lion B

2 个答案:

答案 0 :(得分:5)

您可以将inverts更改为map<string,set<string>>,将每个单词映射到出现的文件名集。

答案 1 :(得分:0)

典型的多地图迭代保留了两个迭代器:

for (it1 = inverts.begin(), it2 = it1, end = inverts.end(); it1 != end; it1 = it2)
{
   // iterate over distinct values

   // Do your once-per-unique-value thing here

   for ( ; it2 != end && *it2 == *it1; ++it2)
   {
     // iterate over the subrange of equal valies
   }
}