【力扣专题栏】字母异词分组,如何利用强大的容器(unordered_map)解决该问题?

题解目录

1、题目描述+解释

2、算法原理解析

3、代码编写

cpp 复制代码
class Solution {
public:
    vector<vector<string>> groupAnagrams(vector<string>& strs) {
        //创建哈希表
        unordered_map<string,vector<string>> hash;
        //遍历
        for(auto& s:strs)
        {
            string tmp=s;
            //排序
            sort(tmp.begin(),tmp.end());
            //插入到key为tmp对应的vector中去
            hash[tmp].push_back(s);
        }
        vector<vector<string>> ret;
        for(auto& h:hash)
        {
            ret.push_back(h.second);
        }
        return ret;
    }
};
相关推荐
TANGLONG2223 分钟前
【初阶数据结构和算法】leetcode刷题之设计循环队列
java·c语言·数据结构·c++·python·算法·leetcode
且听风吟ayan8 小时前
leetcode day13 贪心 45+55
leetcode·c#
sjsjs119 小时前
【数据结构-表达式解析】【hard】力扣224. 基本计算器
数据结构·算法·leetcode
禊月初三9 小时前
LeetCode 4.寻找两个中序数组的中位数
c++·算法·leetcode
戊子仲秋10 小时前
【LeetCode】每日一题 2024_11_23 矩阵中的蛇(哈希、计数)
leetcode·矩阵·哈希算法
庞传奇10 小时前
【LC】560. 和为 K 的子数组
java·算法·leetcode
kcwqxx12 小时前
day23|leetCode 39. 组合总和 , 40.组合总和II , 131.分割回文串
c++·算法·leetcode
pursuit_csdn14 小时前
LeetCode 1072. Flip Columns For Maximum Number of Equal Rows
数据结构·算法·leetcode·力扣
I AM_SUN16 小时前
Leetcode:15.三数之和
算法·leetcode·职场和发展
冧轩在努力18 小时前
【redis】哈希类型详解
数据库·redis·哈希算法