码迷,mamicode.com
首页 > 其他好文 > 详细

POJ2503 Babelfish

时间:2016-06-17 08:30:37      阅读:217      评论:0      收藏:0      [点我收藏+]

标签:

问题链接:POJ2503 Babelfish

这个问题只是一个字典问题,自然用map来实现。问题的关键是时间上能否更快。

本来是想用类unordered_map采用哈希搜索的map来编写程序,编译不支持,只好改为map。

这个问题用类unordered_map来编写程序,时间上会更快一些,也更为合理。

AC通过程序如下:

/* POJ2503 Babelfish */

#include <iostream>
#include <string>
//#include <unordered_map>
#include <map>
#include <sstream>

using namespace std;

int main()
{
//    unordered_map<string, string> words;
    map<string, string> words;
    string line, first, second;
    int i;

    while (getline(cin, line)) {
        if(line.length() == 0)
            break;
        istringstream sin(line);
        sin >> first >> second;

        words[second] = first;
    }

    while(getline(cin, line)) {
        i = words.count(line);
        if (i > 0)
            cout << words[line] << endl;
        else
            cout << "eh" << endl;
    }

    return 0;
}


POJ2503 Babelfish

标签:

原文地址:http://blog.csdn.net/tigerisland45/article/details/51697276

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!