LeetCode 49. 字母异位词分组

Posted programyang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode 49. 字母异位词分组相关的知识,希望对你有一定的参考价值。

给定一个字符串数组,将字母异位词组合在一起。字母异位词指字母相同,但排列不同的字符串。

示例:

输入: ["eat", "tea", "tan", "ate", "nat", "bat"],
输出:
[
["ate","eat","tea"],
["nat","tan"],
["bat"]
]
说明:

所有输入均为小写字母。
不考虑答案输出的顺序。

算法:直接哈希

class Solution 
public:
    unordered_map<string, vector<string>>h;
    vector<vector<string>> groupAnagrams(vector<string>& strs) 
        vector<vector<string>>res;
        for(auto &x:strs)
            string cur=x;
            sort(cur.begin(),cur.end());
            h[cur].push_back(x);
        
        for(auto it=h.begin();it!=h.end();++it)
            res.push_back(it->second);
        return res;
    
;

 

以上是关于LeetCode 49. 字母异位词分组的主要内容,如果未能解决你的问题,请参考以下文章

Leetcode题库——49.字母异位词分组

LeetCode 49. 字母异位词分组(Group Anagrams)

257.LeetCode | 49. 字母异位词分组

LeetCode 49. 字母异位词分组

[leetcode] 49. 字母异位词分组

leetcode题解之49. 字母异位词分组