Finding and grouping anagrams by Python

前端 未结 7 1436
無奈伤痛
無奈伤痛 2021-01-20 00:32
input: [\'abc\', \'cab\', \'cafe\', \'face\', \'goo\']
output: [[\'abc\', \'cab\'], [\'cafe\', \'face\'], [\'goo\']]

The problem is simple: it grou

相关标签:
7条回答
  • 2021-01-20 00:45

    The readable version:

    from itertools import groupby
    from operator import itemgetter
    
    def norm(w):
      return "".join(sorted(w))
    
    words = ['abc', 'cba', 'gaff', 'ffag', 'aaaa']
    
    words_aug = sorted((norm(word), word) for word in words)
    
    grouped = groupby(words_aug, itemgetter(0))
    
    for _, group in grouped:
      print map(itemgetter(1), group)
    

    The one-liner:

    print list(list(anagrams for _, anagrams in group) for _, group in groupby(sorted(("".join(sorted(word)), word) for word in words), itemgetter(0)))
    

    Prints:

    [['aaaa'], ['abc', 'cba'], ['ffag', 'gaff']]
    
    0 讨论(0)
  • 2021-01-20 00:49

    Dave's answer is concise, however the sort which is required by groupby is a O(n log(n)) operation. A faster solution is this:

    from collections import defaultdict
    
    def group_anagrams(strings):
        m = defaultdict(list)
    
        for s in strings:
            m[tuple(sorted(s))].append(s)
    
        return list(m.values())
    
    0 讨论(0)
  • 2021-01-20 00:51

    not a one liner but a solution...

    d = {}
    for item in input:
      s = "".join(sorted(item))
      if not d.has_key(s):
        d[s] = []
      d[s].append(item)
    input2 = d.values()
    
    0 讨论(0)
  • 2021-01-20 01:00

    A readable one-line solution:

    output = [list(group) for key,group in groupby(sorted(words,key=sorted),sorted)]
    

    For example:

    >>> words = ['abc', 'cab', 'cafe', 'goo', 'face']
    >>> from itertools import groupby
    >>> [list(group) for key,group in groupby(sorted(words,key=sorted),sorted)]
    [['abc', 'cab'], ['cafe', 'face'], ['goo']]
    

    The key thing here is to use itertools.groupby from the itertools module which will group items in a list together.

    The list we supply to groupby has to be sorted in advanced so we pass it sorted(words,key=sorted). The trick here is that sorted can take a key function and will sort based on the output from this function, so we pass sorted again as the key function and this will will sort the words using the letters of the string in order. There's no need to define our own function or create a lambda.

    groupby takes a key function which it uses to tell if items should be grouped together and again we can just pass it the built-in sorted function.

    The final thing to note is that the output is pairs of key and group objects, so we just take the grouper objects and use the list function to convert each of them to a list.

    (BTW - I wouldn't call your variable input as then your hiding the built-in input function, although it's probably not one you should be using.)

    0 讨论(0)
  • 2021-01-20 01:01

    the unreadable, one-line solution:

    >>> import itertools
    >>> input = ['abc', 'face', 'goo', 'cab', 'cafe']
    >>> [list(group) for key,group in itertools.groupby(sorted(input, key=sorted), sorted)]
    [['abc', 'cab'], ['cafe', 'face'], ['goo']]
    

    (well, it is really 2 lines if you count the import...)

    0 讨论(0)
  • 2021-01-20 01:03
    from itertools import groupby
    
    words = ['oog', 'abc', 'cab', 'cafe', 'face', 'goo', 'foo']
    
    print [list(g) for k, g in groupby(sorted(words, key=sorted), sorted)]
    

    Result:

    [['abc', 'cab'], ['cafe', 'face'], ['foo'], ['oog', 'goo']]
    

    You can't just use the groupby function, as that only groups together sequential elements for which your key function produces the same result.

    The easy solution is just to sort the words first using the same function as you use for grouping.

    0 讨论(0)
提交回复
热议问题