LeetCode 49. Group Anagrams

简介: 给定一组字符串,将由相同字母组成的字符串组合在一起。注意:所有给定的输入都是小写,输出的顺序不重要

Description



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.


描述


给定一组字符串,将由相同字母组成的字符串组合在一起。

注意:所有给定的输入都是小写,输出的顺序不重要


思路



  • 这道题思路很清晰,也比较简单
  • 对字符串排序,以排好序的字符串为键,构建hash表,值为包含字符串的list
  • 用python实现很容易,因为由内置函数,如果改用C语言,会增加难度


class Solution:
    def groupAnagrams(self, strs):
        """
        :type strs: List[str]
        :rtype: List[List[str]]
        """
        res = []
        strdict = {}
        for item in strs:
            # 对字符串进行排序,sorted返回一个list,需要重新组装成为一个字符串
            key = ''.join(sorted(item))
            # 如果排好序的字符串已经存在,则将该字符串原来的形式插入对应的list
            if key in strdict.keys():
                strdict[key].append(item)
            else:
                # 如果不存在,就先创建一个list,然后在插入
                strdict[key] = []
                strdict[key].append(item)
        # 取出所有的结果,放到一个list中
        for key in strdict:
            res.append(strdict[key])
        # 返回所有的结果
        return res


源代码文件在这里


目录
相关文章
LeetCode 438. Find All Anagrams in a String
Given a string s and a non-empty string p, find all the start indices of p's anagrams in s. Strings consists of lowercase English letters only and the length of both strings s and p will not be larger than 20,100. The order of output does not matter.
94 0
LeetCode 438. Find All Anagrams in a String
|
存储 Java 索引
LeetCode 49: 字母异位词分组 Group Anagrams
# LeetCode 49: 字母异位词分组 Group Anagrams ### 题目: 给定一个字符串数组,将字母异位词组合在一起。字母异位词指字母相同,但排列不同的字符串。 Given an array of strings, group anagrams together.
743 0
|
存储 测试技术
(转)leetcode:Find All Anagrams in a String 滑动窗口方法总结
今天做了几道滑动窗口的题,稍微总结一下。 起因源于早上在leetcode上pick one,随机到了一个easy的题目,想着随便做了,结果半天也找不到最优解,耗时300多ms,A是A了,不过就是暴力罢了。
1710 0
LeetCode - 49. Group Anagrams
49. Group Anagrams  Problem's Link  ---------------------------------------------------------------------------- Mean:  给定一个由string类型构成的集合,让你按照每个字符串的单词构成集合来将这个集合分类.
987 0
|
4月前
|
Unix Shell Linux
LeetCode刷题 Shell编程四则 | 194. 转置文件 192. 统计词频 193. 有效电话号码 195. 第十行
本文提供了几个Linux shell脚本编程问题的解决方案,包括转置文件内容、统计词频、验证有效电话号码和提取文件的第十行,每个问题都给出了至少一种实现方法。
LeetCode刷题 Shell编程四则 | 194. 转置文件 192. 统计词频 193. 有效电话号码 195. 第十行
|
5月前
|
搜索推荐 索引 Python
【Leetcode刷题Python】牛客. 数组中未出现的最小正整数
本文介绍了牛客网题目"数组中未出现的最小正整数"的解法,提供了一种满足O(n)时间复杂度和O(1)空间复杂度要求的原地排序算法,并给出了Python实现代码。
130 2