首页 > 代码库 > Poj 2503 / OpenJudge 2503 Babelfish
Poj 2503 / OpenJudge 2503 Babelfish
1.Link:
http://poj.org/problem?id=2503
http://bailian.openjudge.cn/practice/2503/
2.Content:
Babelfish
Time Limit: 3000MS Memory Limit: 65536K Total Submissions: 32783 Accepted: 14093 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 ogdaycat atcaypig igpayfroot ootfrayloops oopslayatcayittenkayoopslaySample Output
catehloopsHint
Huge input and output,scanf and printf are recommended.Source
Waterloo local 2001.09.22
3.Method:
4.Code:
1 #include<iostream> 2 #include<cstdio> 3 #include<cstring> 4 #include<cstdlib> 5 6 using namespace std; 7 8 #define MAX_LENGTH 11 9 #define MAX_CONTENT 10000210 11 struct dic12 {13 char key[MAX_LENGTH];14 char value[MAX_LENGTH];15 }a[MAX_CONTENT];16 17 int mycmp(const void *x,const void *y)18 {19 return strcmp(((dic*)x)->key,((dic*)y)->key);20 }21 22 int mycmp_bsearch(const void *x,const void *y)23 {24 return strcmp((char*)x,((dic*)y)->key);25 }26 27 28 int main()29 {30 char key[MAX_LENGTH],value[MAX_LENGTH];31 dic* result;32 int i=0;33 while((value[0]=getchar())!=‘\n‘)34 {35 scanf("%s %s",value+1,key);36 strcpy(a[i].key,key);37 strcpy(a[i++].value,value);38 getchar();39 }40 41 qsort(a,i,sizeof(dic),mycmp);42 43 while(scanf("%s",key)!=EOF)44 {45 result=(dic*)bsearch(key,a,i,sizeof(dic),mycmp_bsearch);46 if(result==NULL) printf("eh\n");47 else printf("%s\n",result->value);48 }49 //system("pause");50 return 0;51 }
5.Reference:
Poj 2503 / OpenJudge 2503 Babelfish
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。