poj2503 -Map
题目描述:字符串映射
就是以一个字符串为key另一个为Value,让后按key查询
做法:map,可以直接过,不过注意处理常数233
读入大部分用stdio
#include<iostream> #include<map> #include<stdio.h> using namespace std; map<string,string> s; string a,b; char str[30],s1[12],s2[12]; int main(){ for(;gets(str);s[s2]=s1) if(*str=='\0') break; else sscanf(str,"%s %s",s1,s2); for(;cin>>a;cout<<b<<endl){ b=s[a]; if(b.length()==0) b="eh"; } }