首页 > 编程语言 > 详细

【算法】【字符串】Leetcode哈希

时间:2020-08-24 10:05:15      阅读:60      评论:0      收藏:0      [点我收藏+]

字母异位词分组

题目链接:https://leetcode-cn.com/problems/group-anagrams/

class Solution {
public:
    vector<vector<string>> groupAnagrams(vector<string>& strs) {
        unordered_map<string, int> hashmap;
        vector<vector<string>> res;
        for(auto str : strs)
        {
            auto tmp = str;
            sort(tmp.begin(), tmp.end());
            if(hashmap.count(tmp))
            {
                res[hashmap[tmp]].push_back(str);
            }
            else
            {
                hashmap[tmp] = res.size();
                res.push_back({str});
            }
        }
        return res;
    }
};

【算法】【字符串】Leetcode哈希

原文:https://www.cnblogs.com/Trevo/p/13551828.html

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