首页 > 其他 > 详细

49. Group Anagrams

时间:2018-10-18 00:07:20      阅读:141      评论:0      收藏:0      [点我收藏+]

 

Given an array of strings, group anagrams together.

Example:

Input: ["eat", "tea", "tan", "ate", "nat", "bat"],
Output:
[
  ["ate","eat","tea"],
  ["nat","tan"],
  ["bat"]
]

Note:

  • All inputs will be in lowercase.
  • The order of your output does not matter.
 

AC code:

class Solution {
public:
    vector<vector<string>> groupAnagrams(vector<string>& strs) {
        unordered_map<string, vector<string>> mp;
        vector<vector<string>> res;
        for (auto str : strs) {
            string tage = str;
            sort(tage.begin(), tage.end());
            mp[tage].push_back(str);
        }
        for (auto m : mp) {
            sort(m.second.begin(), m.second.end());
            res.push_back(m.second);
        }
        return res;
    }
};
Runtime: 36 ms, faster than 37.09% of C++ online submissions for Group Anagrams.

 

 

49. Group Anagrams

原文:https://www.cnblogs.com/ruruozhenhao/p/9807315.html

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