POJ2503 Babelfish【映射】

Babelfish

Time Limit: 3000MS   Memory Limit: 65536K
Total Submissions: 50004   Accepted: 20871

Description

You have just moved from Waterloo to a big city. The people here speak an incomprehensible dialect of a foreign language. Fortunately, you have a dictionary to help you understand them.

Input

Input consists of up to 100,000 dictionary entries, followed by a blank line, followed by a message of up to 100,000 words. Each dictionary entry is a line containing an English word, followed by a space and a foreign language word. No foreign word appears more than once in the dictionary. The message is a sequence of words in the foreign language, one word on each line. Each word in the input is a sequence of at most 10 lowercase letters.

Output

Output is the message translated to English, one word per line. Foreign 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

Sample Output

cat
eh
loops

Hint

Huge input and output,scanf and printf are recommended.

Source

Waterloo local 2001.09.22

问题链接:POJ2503 Babelfish

问题描述:输入一个字典,字典格式为“英语 外语”的一一映射关系。然后输入若干个外语单词,输出他们的 英语翻译单词,如果字典中不存在这个单词,则输出“eh”

解题思路:使用map。(也可使用字典树)

AC的C++程序:

#include
#include
#include
#include

using namespace std;

mapm;

int main()
{
	char s[25],t[20];
	while(gets(s))
	{
		int l=strlen(s);
		if(l==0)
		  break;
		int i;
		for(i=0;i

 

你可能感兴趣的:(数据结构)