您的位置:首页 > 其它

leetcode 49. Group Anagrams

2016-03-15 21:34 435 查看
Given an array of strings, group anagrams together.

For example, given: 
["eat", "tea", "tan", "ate", "nat", "bat"]


Return:
[
["ate", "eat","tea"],
["nat","tan"],
["bat"]
]


Note:

For the return value, each inner list's elements must follow the lexicographic order.

All inputs will be in lower-case.
class Solution {
public:
vector<vector<string>> groupAnagrams(vector<string>& strs) {
map<map<char, int>, set<string>>gr;
map<string, int>strscount;
for (int i = 0; i < strs.size(); i++)
{
string s = strs[i]; map<char, int>count;
strscount[s]++;
for (int j = 0; j < s.length(); j++)
count[s[j]]++;
gr[count].insert(strs[i]);
}
vector<vector<string>>re;
for (map<map<char, int>, set<string>>::iterator it = gr.begin(); it != gr.end(); it++)
{
vector<string>ss;
for (set<string> ::iterator it1 = it->second.begin(); it1 != it->second.end(); it1++)
{
for (int i = 0; i < strscount[*it1]; i++)
ss.push_back(*it1);
}
re.push_back(ss);
}
return re;
}
};


accepted
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: