zoukankan      html  css  js  c++  java
  • POJ

    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 ogday
    cat atcay
    pig igpay
    froot ootfray
    loops oopslay
    
    atcay
    ittenkay
    oopslay
    
    Sample Output
    cat
    eh
    loops
    
    Hint
    Huge input and output,scanf and printf are recommended.


    代码:

    #include <iostream>
    #include <cstdio>
    #include <cstring>
    #include <cstdlib>
    #include <algorithm>
    
    using namespace std;
    
    char s[35],s1[15],s2[15];
    
    struct Node{
    	char word[15];
    	Node* Next[26];
    	Node(){
    		memset(Next,NULL,sizeof Next);
    	}
    };
    
    void Insert(Node* root){
    	Node* p = root;
    	int len = strlen(s2);
    	for(int i=0 ; i<len ; ++i){
    		int t = s2[i] - 'a';
    		if(p->Next[t] == NULL)p->Next[t] = new struct Node();
    		p = p->Next[t];
    	}
    	strcpy(p->word,s1);
    }
    
    void Judge(Node* root){
    	int len = strlen(s2);
    	Node* p = root;
    	for(int i=0 ; i<len ; ++i){
    		int t = s2[i]-'a';
    		if(p->Next[t])p = p->Next[t];
    		else {
    			printf("eh
    ");
    			return;
    		}
    	}
    	printf("%s
    ",p->word);
    }
    
    int main(){
    	
    	Node* root = new struct Node();
    	while(gets(s) && strlen(s)!=0){
    		sscanf(s,"%s %s",s1,s2);
    		Insert(root);
    	}
    	while(scanf("%s",s2)!=EOF){
    		Judge(root);
    	}
    	
    	return 0;
    } 

  • 相关阅读:
    数组和字符串的一些常用方法
    函数记忆
    实现一个clone函数,对javascript中的5种数据类型进行值复制
    visual studio 2010问题修复
    url模块、path模块、querystring模块
    静态资源文件使用
    路由表机制
    解决Node.js服务器启动后在浏览器访问时中文显示乱码
    Node.js 初步了解
    Node.js 简介与安装
  • 原文地址:https://www.cnblogs.com/vocaloid01/p/9514073.html
Copyright © 2011-2022 走看看