poj2503 -Map

题目描述:字符串映射

就是以一个字符串为key另一个为Value,让后按key查询

做法:map,可以直接过,不过注意处理常数233

读入大部分用stdio

#include
#include
#include
using namespace std;
map 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<



你可能感兴趣的:(poj2503 -Map)