栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > C/C++/C#

c++primerP441单词转换

C/C++/C# 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

c++primerP441单词转换



#include 
#include  
#include 
#include 
#include 

using namespace std;

// 声明
map buildMap(ifstream &map_file);
const string &transform(const string &s, const map &m);


void word_transform(ifstream &map_file, ifstream &input)
{
	auto trans_map = buildMap(map_file);
	string text;
	while (getline(input,text))
	{
		istringstream stream(text); //此函数健cpp primer p287 从string读取数据,在此次为读取每个单词
		string word;
		bool firstword = true; //判断是否打印单词
		while (stream >> word){
			if(firstword)
				firstword = false;
			else
				cout << " ";     //单词之间留空格
			cout << transform(word, trans_map);
		}
		cout << endl; //一行完成
	}
}


map buildMap(ifstream &map_file)
{
	map trans_map;
	string key;
	string value;
	while(map_file >> key && getline(map_file, value))
		if (value.size() > 1)
			trans_map[key] = value.substr(1); //getline 不会跳过前导空格,用substr 实现,从第一个字符开始(跳过第0个)
		else
			throw runtime_error("no rule for" + key);
	return trans_map;
}

const string &transform(const string &s, const map &m)
{
	auto map_it = m.find(s);
	if (map_it != m.cend())
		return map_it->second;
	else
		return s;  //返回原来的string
}

int main(){
	//创建两个文件导入
	ifstream  map_file("map_file");
	ifstream input("input");
	word_transform(map_file, input);	
}

创建两个文本文件,

输出如下:

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/511024.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号