Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a equivalence relation R on a set A. How can I build equivalence classes on A? It's something like groupBy do, but between all the elements, not only neighbors.

For example, equal is equivalence relation (it is reflexive, symmetric and transitive binary relation):

type Sometuple = (Int, Int, Int)

equal :: Sometuple -> Sometuple -> Bool
equal (_, x, _) (_, y, _) = x == y

It is actually a predicate that connect 2 Sometuple elements.

λ> equal (1,2,3) (1,2,2)
True

So, how can I build all equivalence classes on [Sometuple] based on equal predicate? Something like that:

equivalenceClasses :: (Sometuple -> Sometuple -> Bool) -> [Sometuple] -> [[Sometuple]]
λ> equivalenceClasses equal [(1,2,3), (2,1,4), (0,3,2), (9,2,1), (5,3,1), (1,3,1)]
[[(1,2,3),(9,2,1)],[(2,1,4)],[(0,3,2),(5,3,1),(1,3,2)]]
share|improve this question
You may find this package useful. hackage.haskell.org/package/equivalence – yihuang Nov 25 '11 at 7:20
The equivalence package requires some mutable monadic context (IO or ST). Try persistent-equivalence instead for something a bit cleaner. – mergeconflict Nov 25 '11 at 19:04

2 Answers

up vote 11 down vote accepted

If you can define a compatible ordering relation, you can use

equivalenceClasses equal comp = groupBy equal . sortBy comp

which would give you O(n*log n) complexity. Without that, I don't see any way to get better complexity than O(n^2), basically

splitOffFirstGroup :: (a -> a -> Bool) -> [a] -> ([a],[a])
splitOffFirstGroup equal xs@(x:_) = partition (equal x) xs
splitOffFirstGroup _     []       = ([],[])

equivalenceClasses _     [] = []
equivalenceClasses equal xs = let (fg,rst) = splitOffFirstGroup equal xs
                              in fg : equivalenceClasses equal rst
share|improve this answer
I would call this algorithm O(nm), where n is the size of the list, and m is the number of distinct equivalence classes represented by the list. The worst case, of course, would be m = n, meaning a O(n^2) algorithm, but the best case would be m = 1, meaning a O(n) algorithm. – Dan Burton Nov 25 '11 at 1:02
1) How can comparator helps out in that case. There is no way to range all set elements in order, that all elements from the single equivalent class will be neighbors. 2) Why O(n^2) is a better complexity> – ДМИТРИЙ МАЛИКОВ Nov 26 '11 at 3:49
@dmitry.malikov 1) With a compatible ordering, that means, one such that cmp x y == EQ if and only if equal x y, you can sort the list in O(n*log n) time, then all equivalent items are contiguous and the list can be grouped in O(n). For your example above, a compatible ordering would be cmp (_,x,_) (_,y,_) = compare x y, but in general it would be hard to define. – Daniel Fischer Nov 26 '11 at 12:43
2) As Dan Burton clarified, O(n^2) is the worst case complexity. If no two items are equivalent, it would run through all n elements to identify the first equivalence class, then through the remaining n-1 elements to identify the second equivalence class etc, altogether it would take n + (n-1) + ... + 1 = n*(n+1)/2 steps. If you're lucky, there are only few equivalence classes and the algorithm would require only O(n) steps. But if you only have the equivalence relation, and no two elements are equivalent, you have to test every item against all others, giving O(n^2) complexity. – Daniel Fischer Nov 26 '11 at 12:58

The correct data structure to use here is a disjoint set (Tarjan). A purely functional, persistent implementation of such a structure was described by Conchon and Filliâtre. There's an implementation on Hackage.

share|improve this answer
Can you explain how you can use a disjoint set structure to get a better algorithm than Daniel Fischer's? I don't see how. – Max Nov 25 '11 at 19:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.