词典 (noi OpenJudge)
Posted ZlycerQan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了词典 (noi OpenJudge)相关的知识,希望对你有一定的参考价值。
传送门:1806:词典
神奇的STL
#include <iostream> #include <cstdio> #include <cstring> #include <map> #include <sstream> using namespace std; string s, s1, s2, word; map <string, string> dic; int main() { while (getline (cin, s) && s != "") { stringstream sin (s); sin >> s1 >> s2; dic [s2] = s1; } while (cin >> word) { if (dic [word] == "") cout << "eh" << endl; else cout << dic [word] << endl; } return 0; }
以上是关于词典 (noi OpenJudge)的主要内容,如果未能解决你的问题,请参考以下文章