POJ 刷题系列:2503. Babelfish
传送门:2503. Babelfish
题意:
翻译:给出一英文单词和与之对应的外文,组成字典集。后续当给出一个外文单词时,求出对应的英文单词。
思路:
无脑 HashMap,外文为key,英文单词为value,存入hashMap。
代码如下:
import java.io.IOException;
import java.util.HashMap;
import java.util.Map;
import java.util.Scanner;
public class Main{
public static void main(String[] args) throws IOException {
Scanner in = new Scanner(System.in);
Map<String, String> dict = new HashMap<String, String>();
while (in.hasNextLine()) {
String str = in.nextLine();
if (str.contains(" ")) {
dict.put(str.split(" ")[1], str.split(" ")[0]);
}
else {
if (str.isEmpty()) continue;
if (dict.containsKey(str)) System.out.println(dict.get(str));
else System.out.println("eh");
}
}
in.close();
}
}