Good day! I have a dictionary Dictionary<long, List<long>> where values of List can be keys of dictionary.

What I want to do is to separate keys and values of this dictionary to set that represent linked elements. So if i have

dict[1] = new List<long>() { 12, 4, 2 };
dict[2] = new List<long>() { 7 };
dict[3] = new List<long>() { 25, 19, 27 };

I want to get as output tow sets { 1, 12, 4, 2, 7 } and { 3, 25, 19 27 };

I found a solution but it looks for me that it is not fast enough.

 List<HashSet<long>> graphs = new List<HashSet<long>>();
 foreach (var kv in dict)
 {
     HashSet<long> maybeNewGraph = new HashSet<long>(kv.Value);
     maybeNewGraph.Add(kv.Key);

     bool success = false;
     foreach (var hashSet in graphs)
     {
        if (hashSet.Overlaps(maybeNewGraph))
        {
            hashSet.UnionWith(maybeNewGraph);
            success = true;
            break;
        }
     }
     if (!success)
     {
        graphs.Add(maybeNewGraph);
     }
 }

Are there better solutions for such a problem? Thank you.

UPD : corrected exmaple. Thanks svick

link|improve this question

0% accept rate
So, if you had 1 → { 3 }, 2 → { 3 }, 3 → { 4, 5, 6 }, then the results should be { 1, 3, 4, 5, 6 } and { 1, 2, 4, 5, 6 }? – svick Oct 20 '11 at 14:35
Nope. Just {1, 2, 3, 4, 5, 6 }. – Egor Oct 20 '11 at 14:37
1  
Then shouldn't your example have just one result set too? The sets have 12 in common. – svick Oct 20 '11 at 14:39
Yes you are right. – Egor Oct 20 '11 at 14:40
Is this line valid within the Foreach statement? hashSet.UnionWith(maybeNewGraph) – GianT971 Oct 20 '11 at 14:42
show 5 more comments
feedback

1 Answer

Looks to me like you're trying to implement an algorithm for solving disjoint sets. Luckily for you, there's prior art on the web. Now I've handed you the correct search term, Wikipedia is a good place to start.

Here's a c# implementation. I can't vouch for its efficiency.

link|improve this answer
Thanks. Will try this! – Egor Oct 20 '11 at 14:50
feedback

Your Answer

 
or
required, but never shown

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