首页 > 其他 > 详细

hdu 1113 Word Amalgamation (map)

时间:2014-08-06 11:56:21      阅读:360      评论:0      收藏:0      [点我收藏+]
# include <stdio.h>
# include <string>
# include <map>
# include <iostream>
# include <algorithm>
using namespace std;
int main()
{
	string s,t;
	int flag;
	map<string,string>q;
	while(cin>>s&&s!="XXXXXX")
	{
		t=s;
		sort(s.begin(),s.end());
		q[t]=s;
	}
	while(cin>>s&&s!="XXXXXX")
	{
		sort(s.begin(),s.end());
		map<string,string>::iterator it;
		flag=0;
		for(it=q.begin();it!=q.end();it++)
		{
			if(it->second==s)
			{
				cout<<it->first<<endl;
				flag=1;
			}
		}
		if(!flag)
			cout<<"NOT A VALID WORD"<<endl;
		cout<<"******"<<endl;
	}
	return 0;
}

hdu 1113 Word Amalgamation (map),布布扣,bubuko.com

hdu 1113 Word Amalgamation (map)

原文:http://blog.csdn.net/lp_opai/article/details/38398117

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!