首页 > 其他 > 详细

Anagrams

时间:2014-10-14 20:54:40      阅读:359      评论:0      收藏:0      [点我收藏+]

这题折腾主要是因为对于这个anagram的定义理解有误,参看维基页面:

An anagram is a type of word play, the result of rearranging the letters of a word or phrase to produce a new word or phrase, using all the original letters exactly once; for example Torchwood can be rearranged into Doctor Who. Someone who creates anagrams may be called an "anagrammatist".[1] The original word or phrase is known as thesubject of the anagram.

Any word or phrase that exactly reproduces the letters in another order is an anagram. However, the goal of serious or skilled anagrammatists is to produce anagrams that in some way reflect or comment on the subject. Such an anagram may be a synonym or antonym of its subject, a parody, a criticism, or praise; e.g. William Shakespeare = I am a weakish speller

Another example is "silent" which can be rearranged to "listen". The two can be used in the phrase, "Think about it, SILENT and LISTEN are spelled with the same letters". (To mean "the quieter you become, the more you can hear").

简单解释就是说,两个单词word1, word2,构成他们的字符个数和种类都相同,那就是满足anagram。

实际实现就是,如果word2能够通过调整字符顺序得到word1,那就成立了。

    vector<string> anagrams(vector<string> &strs) {
    map<string, int> table;
	for (auto it = strs.begin(); it != strs.end(); it++){
		string s = *it;
		sort(s.begin(), s.end());
		if (table.find(s) == table.end()){
			table[s] = 1;
		}
		else {
			table[s]++;
		}
	}
	vector<string> result;
	for (auto it = strs.begin(); it != strs.end(); it++){
		string s = *it;
		sort(s.begin(), s.end());
		if (table[s] > 1)
			result.push_back(*it);
	}
	return result;
    }

  

Anagrams

原文:http://www.cnblogs.com/hustxujinkang/p/4025136.html

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