简体   繁体   English

组合列表中的集合

[英]combining sets within a list

Hi so I'm trying to do the following but have gotten a bit stuck. 嗨,我正在尝试执行以下操作,但是有点卡住了。 Say I have a list of sets: 假设我有一组清单:

A = [set([1,2]), set([3,4]), set([1,6]), set([1,5])]

I want to create a new list which looks like the following: 我想创建一个新列表,如下所示:

B = [ set([1,2,5,6]), set([3,4]) ]

ie create a list of sets with the sets joined if they overlap. 即创建一个集合列表,如果集合重叠,则将它们合并在一起。 This is probably simple but I can't quite get it right this morning. 这可能很简单,但是今天早上我不太明白。

This also works and is quite short: 这也有效并且很短:

import itertools

groups = [{'1', '2'}, {'3', '2'}, {'2', '4'}, {'5', '6'}, {'7', '8'}, {'7','9'}]

while True:
    for s1, s2 in itertools.combinations(groups, 2):
        if s1.intersection(s2):
            break
    else:
        break
    groups.remove(s1)
    groups.remove(s2)
    groups.append(s1.union(s2))

groups

This gives the following output: 这给出以下输出:

[{'5', '6'}, {'1', '2', '3', '4'}, {'7', '8', '9'}]

The while True does seems a bit dangerous to me, any thoughts anyone? while True确实对我来说有点危险,但有人有什么想法吗?

How about: 怎么样:

from collections import defaultdict

def sortOverlap(listOfTuples):

    # The locations of the values
    locations = defaultdict(lambda: [])

    # 'Sorted' list to return
    sortedList = []

    # For each tuple in the original list
    for i, a in enumerate(listOfTuples):

        for k, element in enumerate(a):

            locations[element].append(i)

    # Now construct the sorted list
    coveredElements = set()
    for element, tupleIndices in locations.iteritems():

        # If we've seen this element already then skip it
        if element in coveredElements:
            continue

        # Combine the lists
        temp = []
        for index in tupleIndices:

            temp += listOfTuples[index]

        # Add to the list of sorted tuples
        sortedList.append(list(set(temp)))

        # Record that we've covered this element
        for element in sortedList[-1]:
            coveredElements.add(element)

    return sortedList

# Run the example (with tuples)
print sortOverlap([(1,2), (3,4), (1,5), (1,6)])

# Run the example (with sets)
print sortOverlap([set([1,2]), set([3,4]), set([1,5]), set([1,6])])

You could use intersection() and union() in for loops: 您可以在for循环中使用intersection()和union():

A = [set([1,2]), set([3,4]), set([1,6]), set([1,5])]

intersecting = []

for someSet in A:
    for anotherSet in A:
        if someSet.intersection(anotherSet) and someSet != anotherSet:
            intersecting.append(someSet.union(anotherSet))
            A.pop(A.index(anotherSet))

A.pop(A.index(someSet))

finalSet = set([])
for someSet in intersecting:
    finalSet = finalSet.union(someSet)

A.append(finalSet)

print A

Output: [set([3, 4]), set([1, 2, 5, 6])] 输出: [set([3, 4]), set([1, 2, 5, 6])]

A slightly more straightforward solution, 一个更直接的解决方案,

def overlaps(sets):
    overlapping = []
    for a in sets:
        match = False
        for b in overlapping:
            if a.intersection(b):
                b.update(a)
                match = True
                break
        if not match:
            overlapping.append(a)
    return overlapping

examples 例子

>>> overlaps([set([1,2]), set([1,3]), set([1,6]), set([3,5])])
[{1, 2, 3, 5, 6}]
>>> overlaps([set([1,2]), set([3,4]), set([1,6]), set([1,5])])
[{1, 2, 5, 6}, {3, 4}]
for set_ in A:
    new_set = set(set_)
    for other_set in A:
        if other_set == new_set:
            continue
        for item in other_set:
            if item in set_:
                new_set = new_set.union(other_set)
                break
    if new_set not in B:
        B.append(new_set)

Input/Output: 输入输出:

A = [set([1,2]), set([3,4]), set([2,3]) ]
B = [set([1, 2, 3]), set([2, 3, 4]), set([1, 2, 3, 4])]

A = [set([1,2]), set([3,4]), set([1,6]), set([1,5])]
B = [set([1, 2, 5, 6]), set([3, 4])]

A = [set([1,2]), set([1,3]), set([1,6]), set([3,5])]
B = [set([1, 2, 3, 6]), set([1, 2, 3, 5, 6]), set([1, 3, 5])]

This function will do the job, without touching the input: 此功能将完成工作,而无需触摸输入:

from copy import deepcopy


def remove_overlapped(input_list):
    input = deepcopy(input_list)
    output = []
    index = 1

    while input:
        head = input[0]
        try:
            next_item = input[index]
        except IndexError:
            output.append(head)
            input.remove(head)
            index = 1
            continue
        if head & next_item:
            head.update(next_item)
            input.remove(next_item)
            index = 1
        else:
            index += 1
    return output

Here is a function that does what you want. 这是执行您想要的功能。 Probably not the most pythonic one but does the job, most likely can be improved a lot. 可能不是最Python的,但能完成工作,最有可能改进很多。

from sets import Set

A = [set([1,2]), set([3,4]), set([2,3]) ]

merges = any( a&b for a in A for b in A if a!=b)
while(merges):
    B = [A[0]]
    for a in A[1:] :
        merged = False
        for i,b in enumerate(B):
            if  a&b :
                B[i]=b | a
                merged =True
                break

        if not merged:         
            B.append(a)
    A = B
    merges = any( a&b for a in A for b in A if a!=b)

print B  

What is happening there is the following, we loop all the sets in A, (except the first since we added that to B already. We check the intersection with all the sets in B, if the intersection result anything but False (aka empty set) we perform a union on the set and start the next iteration, about set operation check this page: https://docs.python.org/2/library/sets.html & is intersection operator | is union operator 发生了以下情况,我们循环了A中的所有集合(除了第一个,因为我们已经将其添加到了B中。我们检查与B中所有集合的相交,如果相交结果不是False(又称空集合) ),我们在集合上执行并集并开始下一个迭代,关于集合操作,请检查以下页面: https : //docs.python.org/2/library/sets.html&是交集运算符|是并集运算符

You can probably go more pythonic using any() etc but wuold have required more processing so I avoided that 您可能可以使用any()等使用更多pythonic,但是wuold需要更多处理,因此我避免了

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM