uva 10282 - Babelfish

 

     这题可以用map直接水过,但是那样就没有什么意思了。

 

     所以还是用hash表写了下,学习了一下hash链表的方法,其实就是做一个邻接表,但是这样在判断时还要比较生成hash值的string,而且如果hash函数没构造好,复杂度会大大增加,不过是一个解决冲突的好办法。

 

/*
author:jxy
lang:C/C++
university:China,Xidian University
**If you need to reprint,please indicate the source**
*/
#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <stdlib.h>
#define INF 1E9
using namespace std;
int head[1000000],next[100010];
string s[100010],f[100010];
int get_hash(string s)
{
    long long ans=0;
    for(int i=0;i<s.size();i++)
      ans=ans*33+s[i];
    return ans%999991;
}
int main()
{
    memset(head,-1,sizeof(head));
    string a,t;
    char ss;
    int cnt=1,now,u;
    s[0]="eh";
    while(cin>>a>>t)
    {
        s[cnt]=a;
        f[cnt]=t;
        now=get_hash(t);
        next[cnt]=head[now];//因为数据保证唯一,所以直接插入即可
        head[now]=cnt;
        cnt++;
        getchar();
        if((ss=getchar())=='\n')break;//判断有无遇到空行
        else ungetc(ss,stdin);
    }
    while(cin>>a)
    {
        now=get_hash(a);
        bool flag=1;
        for(u=head[now];u!=-1;u=next[u])
        {
            if(f[u]!=a)continue;
            cout<<s[u]<<endl;
            flag=0;
        }
        if(flag)cout<<s[0]<<endl;
    }
}


 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值