We all know that FatMouse doesn't speak English. But now he has to be
prepared since our nation will join WTO soon. Thanks to Turing we have
computers to help him.
Input Specification
Input consists of up to 100,005 dictionary entries, followed by a blank
line, followed by a message of up to 100,005 words. Each dictionary entry is a
line containing an English word, followed by a space and a FatMouse word. No
FatMouse word appears more than once in the dictionary. The message is a
sequence of words in the language of FatMouse, one word on each line. Each word
in the input is a sequence of at most 10 lowercase letters.
Output Specification
Output is the message translated to English, one word per line. FatMouse
words not in the dictionary should be translated as "eh".
Sample Input
dog ogday
cat atcay
pig igpay
froot ootfray
loops oopslay
atcay
ittenkay
oopslay
Output for Sample Input
cat
eh
loops
rel="File-List" href="file:///C:%5CDOCUME%7E1%5Cdyk%5CLOCALS%7E1%5CTemp%5Cmsohtml1%5C01%5Cclip_filelist.xml">
代码:
#include<map>
#include<string>
#include <algorithm>
using namespace std ;
int main()
{
string strTmp;
map<string, string> dictionary;//词典
map<string, string>::iterator iter;
//构造词典
while(getline(cin,strTmp))
{
if (strTmp.compare("")==0)
{//词典项输入结束
break;
}
string strKey,strValue;
string::iterator pos = strTmp.begin();
pos = find(strTmp.begin(),strTmp.end(),' ');//找到空格分隔符
copy(strTmp.begin(),pos,back_inserter(strValue));//值
copy(pos+1,strTmp.end(),back_inserter(strKey));//键
dictionary[strKey] = strValue;//构造词典项
}
//在词典中查询单词
while(cin>>strTmp)
{
iter = dictionary.find(strTmp);
if (iter!=dictionary.end())
{//在词典中
cout<<dictionary[strTmp]<<endl;
}
else
{//不在词典中
cout<<"eh"<<endl;
}
}
return 0 ;
}

本文介绍了一个简单的程序设计案例,该程序用于将一种虚构的FatMouse语言翻译成英语。通过构建一个字典来映射两种语言之间的词汇,实现翻译功能。输入包括字典条目和待翻译的消息。

874

被折叠的 条评论
为什么被折叠?



