首页 > 其他 > 详细

49. Group Anagrams

时间:2019-10-27 23:29:47      阅读:103      评论: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.

 

基本的遍历练手题.

最开始试图用异或来做, 因为只要字母一样,不管顺序是什么 异或值是一样的..结果忘记了一个事情即使 异或值一样不能代表这俩string是一样的字母组成.

 

class Solution {
public:
    vector<vector<string>> groupAnagrams(vector<string>& strs) {
        unordered_map<string,vector<string>> res;
        for(int i=0;i<strs.size();++i)
        {
            string s= strs[i];
            sort(s.begin(),s.end());
            res[s].push_back(strs[i]);
        }
        
        vector<vector<string>> r;
        for(auto i=res.begin();i!=res.end();++i)
        {
            r.push_back(i->second);
        }
        return r;
    }
};

 

49. Group Anagrams

原文:https://www.cnblogs.com/lychnis/p/11749213.html

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