vote up 1 vote down star
1

I have 2 separate List and I need to compare the two and get everything but the intersection of the two lists. How can I do this (C#)?

flag
what have you already tried? – fretje Nov 5 at 20:01
what do you mean by everything but the union? – Daniel A. White Nov 5 at 20:01
Everything but the union is always nothing. Do you mean everything except the intersection? – Mehrdad Afshari Nov 5 at 20:02
Do you mean "but the intersection"? – Simon Fox Nov 5 at 20:02
Called the "symmetric difference" in set theory: en.wikipedia.org/wiki/Set_theory – Michael Todd Nov 5 at 20:02
show 3 more comments

6 Answers

vote up 4 vote down check

You can use Except to get everything but the intersection of the two lists.

var differences = listA.Except(listB).Union(listB.Except(listA));

If you want to get everything but the union:

var allButUnion = new List<MyClass>();

(The union is everything in both lists - everything but the union is the empty set...)

link|flag
Given that you're using the word "intersection" to describe what it means in English, doesn't it make sense to use it in the code as well? :) – Jon Skeet Nov 5 at 20:04
hehehe, true :) – Reed Copsey Nov 5 at 20:04
Although, I seem to remember, when I had to do this for something, this was slightly more efficient than doing the total union and removing the intersection... – Reed Copsey Nov 5 at 20:05
vote up 9 vote down

If you mean the set of everything but the intersection (symmetric difference) you can try:

var set = new HashSet<Type>(list1);
set.SymmetricExceptWith(list2);
link|flag
Excellent - that looks like the best way of doing it to me. – Jon Skeet Nov 5 at 20:06
Very nice! That's much cleaner than what I had. – Reed Copsey Nov 5 at 21:03
vote up 3 vote down

Do you mean everything that's only in one list or the other? How about:

var allButIntersection = a.Union(b).Except(a.Intersect(b));

That's likely to be somewhat inefficient, but it fairly simply indicates what you mean (assuming I've interpreted you correctly, of course).

link|flag
vote up 0 vote down

Use Except:

List<int> l1 = new List<int>(new[] { 1, 2, 3, 4 });
List<int> l2 = new List<int>(new[] { 2, 4 });
var l3 = l1.Except(l2);
link|flag
Wouldn't that just return the items in l1 that are not in l2? What if there are items in l2 not in l1? – Michael Todd Nov 5 at 20:08
vote up 0 vote down
var theUnion = list1.Concat(list2);
var theIntersection = list1.Intersect(list2);
var theSymmetricDifference = theUnion.Except(theIntersection);
link|flag
vote up 0 vote down

Something like this?

String[] one = new String[] { "Merry", "Metal", "Median", "Medium", "Malfunction", "Mean", "Measure", "Melt", "Merit", "Metaphysical", "Mental", "Menial", "Mend", "Find" };
            String[] two = new String[] { "Merry", "Metal", "Find", "Puncture", "Revise", "Clamp", "Menial" };

List<String> tmp = one.Except(two).ToList();
tmp.AddRange(two.Except(one));

String[] result = tmp.ToArray();
link|flag

Your Answer

Get an OpenID
or

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