I have a list with tuples like this:
L ={(1,2), (1,4), (1,3), (2,3), (3,4), (3,5), (4,5), (6,7)}
I try to combine these to get equivalence classes (tuples of the same value are merged, like (1,2) and (2,3) becomes (1,2,3)). So you get:
EQ = {(1,2,3,4,5), (6,7)}
What's the easiest way to accomplish this in Python?
You can use the following recursion function . first you can convert the elements to
set
and go though the set and check any element with the elements after if , when you find an element that have any intersection (v & k
) you merg thous set together and remove the second element from list and update the main list :result :
Note that in the second
enumerate
function i use i+1 for the start number for indexing ofm_list[i+1:]
because of that the index of k (j) be equal with the index of k in main list.