C++题目 文件读取 istringstream|geline使用

//读取一个英文的文本文件,统计文本文件中的单词的词频,按照词频从大到小依次输出单词和词频。
#include <iostream>
#include <string>
#include <map>
#include <algorithm>
#include <iomanip>
#include <sstream>
#include <fstream>
using namespace std;
map<string, int>countword;
int main()
{
	ifstream in_file("C:\\english.txt", ios::in);
	if (!in_file)
	{
		cerr << "打开文件失败!";
		exit(-1);
	}
	string str,line;
	while(getline(in_file, line))
	{
		istringstream  word(line);
		while (word >> str)
			if (countword.find(str) == countword.end())
				countword[str] = 1;
			else
				countword[str]++;
	}
	map<string, int>::iterator it = countword.begin();
	for (; it != countword.end(); it++)
	{
		cout << it->first << ":" << it->second<<endl;
	}
	in_file.close();
	return 0;
}

可改进:filename

string filename;
cout<<"请输入文件名:"<<endl;
cin>>filename;
ifstream in_file(filename;ios::in);
//头文件
#include <sstream>

//关键代码
while(getline(in_file, line))//std::getline(iostream&,string)获取一行存入string中
	{
		istringstream  word(line);  
 //isstreaming是一种输入流,可以将空格之间的内容提取出来
		
        while (word >> str)           
 //Word提取了string line,word输出str(str用于临时存取获得的空格之前的内容,用于输出)
			
            if (countword.find(str) == countword.end())
				countword[str] = 1;
			else
				countword[str]++;
//STL map查询key值是否存在 -> mymap.find(char*/string)若查到返回当前的迭代器,无则返回.end()的位置

学习参考:(28条消息) C++ ostringstream、istringstream、stringstream 用法浅析_HelloKandy的博客-CSDN博客

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值