计算向量<string> </string>中的单词出现次数

时间:2014-05-08 11:05:36

标签: c++ string vector

我得到了这个家庭作业,我必须制作一个可以从带有参数的cmd调用的c ++应用程序。有3个参数:

第一个单词不带标点符号,将它们转换为低位并按字母顺序存储它们。所以我用了一个矢量字符串。

第二个计算文件中每个单词的出现次数并对它们进行排序,以便最常用的单词是第一个。我被困在这个部分并且不知道如何处理这个...所以如果有人能帮助我,我将非常感激

第三个参数计算每个标点符号的出现次数如上所述,你可以想象,我也被困在这个部分哈哈 到目前为止,这是我的代码:

#include <iostream>
#include <fstream>
#include <string>
#include <vector>
#include <algorithm>


using namespace std;


int main(int argc, char* argv[])
{
ifstream ulaz ("korpus.txt");
string testline;
vector<string> word;

if (string(argv[1])=="-r"){
    cout<<"uzima rijeci iz korpusa i stavlja u rijecnik po abecedi"<<endl;
    while(ulaz >> testline)
    {
        for(int i=0; i<testline.size(); i++){
                if (ispunct(testline[i])) testline.erase(i);
        }
    transform (testline.begin(), testline.end(), testline.begin(), ::tolower);
    word.push_back(testline);
    }
    sort(word.begin(), word.end());
    for (int i=0; i<word.size(); i++) {
            cout<<word[i]<<"("<<i<<")"<<endl;
    }
}


if (string(argv[1])=="-f"){
    cout<<endl<<"frekventonost ponavljanja se izračunava"<<endl;
}
if (string(argv[1])=="-i"){
    cout<<endl<<"broj interpunkcija i sranja se izračunava"<<endl;

}
return 0;
}

1 个答案:

答案 0 :(得分:1)

您可以使用map或unordered_map制作单词计数器:

std::map<std::string, unsigned int> counter;
for (auto w : word)
{
    counter[w]++;
}

然后,您只需按计数对地图的元素进行排序。