用C++统计文本中每个单词在每一行出现的次数,最后按(单词,次数,次数,,,,)保存 5
比如一个文本有1000行,就统计每个单词在每一行出现的次数,如果某个单词i在第j行没有出现,就不表示。最后只表示不为0的那些次数...
比如一个文本有1000行,就统计每个单词在每一行出现的次数,如果某个单词i在第j行没有出现,就不表示。最后只表示不为0的那些次数
展开
1个回答
展开全部
int main()
{
ifstream test2("test2.txt", ios::in);//这里放的是读入的文件名
ofstream final("final.txt",ios::app);// 这里放的是要存放输出内容的新生成文件
string str,tmp;
int count;
final<< "style";
while (getline(test2, str))
{
count = 0;
stringstream word(str);
while (!word.eof())
{
word >> tmp;
if (strcmp(tmp.c_str(), "style") == 0)
count++;
}
if (count!=0)
final<< count<<" ";//把每行的对应单词出现次数往生成的文件中存入
}
cout << endl;
system("pause");
return 0;
}
{
ifstream test2("test2.txt", ios::in);//这里放的是读入的文件名
ofstream final("final.txt",ios::app);// 这里放的是要存放输出内容的新生成文件
string str,tmp;
int count;
final<< "style";
while (getline(test2, str))
{
count = 0;
stringstream word(str);
while (!word.eof())
{
word >> tmp;
if (strcmp(tmp.c_str(), "style") == 0)
count++;
}
if (count!=0)
final<< count<<" ";//把每行的对应单词出现次数往生成的文件中存入
}
cout << endl;
system("pause");
return 0;
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询