poj2503 Babelfish

2024-06-08 18:32
文章标签 babelfish poj2503

本文主要是介绍poj2503 Babelfish,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

#include<iostream>
#include<cstring>
#include<string>
#include<map>
#include<cstdio>
using namespace std;
char english[12],foreign[12];
int main()
{map<string,bool>appear;   //记录foreign与engliash的配对映射是否出现 map<string,string>translate;   //记录foreign到engliash的映射  /*Input the dictionary*/ while(true){char ch;ch=getchar();if(ch=='\n')   //判定是否输入了空行break;else			//输入english {int cnt=1;english[0]=ch;while(true){ch=getchar();if(ch==' '){english[cnt]='\n';break;}else{english[cnt++]=ch;}}cin>>foreign;getchar();   //吃掉 输入foreign后的 回车符 appear[foreign]=true;translate[foreign]=english;}}char str[12];while(cin>>str){if(appear[str])cout<<translate[str]<<endl;elsecout<<"eh"<<endl;}
}

这篇关于poj2503 Babelfish的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1042968

相关文章

POJ2503_Babelfish(字典树)

Babelfish Time Limit: 1000ms   Memory limit: 65536K  有疑问?点这里^_^ 题目描述 You have just moved from Waterloo to a big city. The people here speak an incomprehensible dialect of a foreign langua

kylin-v10sp2-Babelfish for PostgreSQL

环境准备 x86_linux_kylin v10 sp2 1、依赖 yum makecacheyum install -y uuid-devel 2、源代码 下载支持babelfish的pg,也是babelfish社区维护更新 cd /opt#pg源码,支持babelfish版git clone https://github.com/babelfish-for-postgresql

poj2503 Barbelfish

题目是水题,用STL的map做,处理空行很有技巧 代码如下 下面这段会CE,原因是 #include <iostream>using namespace std;#include <cstdlib>#include <cstdio>#include <string.h>#include <map>map<string,bool>appear;map<string,strin

poj2503 Babelfish BKDRhash+链式hash

题目链接 题意:给定字符串以及对应的字符串,再给字符串找到对应的字符串,不存在输出"eh"。 思路:造模板。 /*********************************************************file name: poj2503.cppauthor : kereocreate time: 2015年04月12日 星期日 17时13分12秒*******

vua 10282 - Babelfish(Hash、map)

点击打开链接 题意:100000个字的字典。 1、直接用STL中的map 0.532sAC 2、Hash 0.115sAC #include <iostream>#include <cstdio>#include <string>#include <map>using namespace std;int const MAX_SIZE = 11, MAX_N

uva 10282 Babelfish(映射)

此题让我了解了一点map容器,所以说这道题还是我看的题解,以后看的越少越好。。。。 map就是映射,恩,挺好用的,还有就是gets()会读取换行符。。。getchar()也可以,但是scanf()这些 格式化的就读不了。。。会存在于缓冲器内 代码: #include<stdio.h>#include<iostream>#include<string.h>#include

告别 Microsoft SQL Server, 迎接 Babelfish

我们许多客户都表示不希望与专有数据库供应商合作,从而避免昂贵的成本开支以及繁琐的许可条款。但是,从旧式商用数据库迁移出来可能需要耗费大量时间和资源。迁移数据库时,可使用 Amazon Schema Conversion Tool 和 Amazon Database Migration Service 自动迁移数据库模式和数据。然而,迁移应用程序本身需要完成更多的工作量,包括重写与数据库交互的应