What's the simplest way to perform a set subtraction given two arrays in C#? Apparently this is dead easy in Ruby. Basically I just want to remove the elements from array a that are in array b:

string[] a = new string[] { "one", "two", "three", "four" };
string[] b = new string[] { "two", "four", "six" };
string[] c = a - b; // not valid

c should equal { "one", "three" }. b - a would yield { "six" }.

link|improve this question

feedback

2 Answers

up vote 10 down vote accepted

If you're using Linq, you can use the Except operator like this:

string [] c = a.Except(b).ToArray();

Edit: CodeInChaos makes a good point. If a contains duplicates, it will remove any duplicates as well. The alternative to make it function exactly like the Ruby version would be this:

string [] c = a.Where(x=>!b.Contains(x)).ToArray();
link|improve this answer
3  
Note that this will only return unique elements. So if you have one element twice in a it will only keep the first one. – CodeInChaos Feb 20 '11 at 17:25
@CodeInChaos - True. I'll edit my post to reflect this. – Keltex Feb 20 '11 at 17:26
Excellent, thanks--don't know how I missed that. Guess the naming just threw me off. – chaiguy Feb 20 '11 at 17:27
The alternative will remove duplicates! – xanatos Feb 20 '11 at 17:32
2  
@xanatos - That's the proper behavior, to remove all elements from A that are in B. On the other hand my alternative will do {'B','B'} - {'A'} = {'B','B'} – Keltex Feb 20 '11 at 17:53
show 3 more comments
feedback
public static IEnumerable<T> Minus<T>(this IEnumerable<T> enum1, IEnumerable<T> enum2)
{
    Dictionary<T, int> elements = new Dictionary<T, int>();

    foreach (var el in enum2)
    {
        int num = 0;
        elements.TryGetValue(el, out num);
        elements[el] = num + 1;
    }

    foreach (var el in enum1)
    {
        int num = 0;
        if (elements.TryGetValue(el, out num) && num > 0)
        {
            elements[el] = num - 1;
        }
        else
        {
            yield return el;
        }
    }
}

This won't remove duplicates from enum1. To be clear:

  1. { 'A', 'A' } - { 'A' } == { 'A' }
  2. { 'A', 'A' } - { 'A' } == { }

I do the first, Enumerable.Except does the second.

link|improve this answer
elements.Remove should be elements.Contains – Keltex Feb 20 '11 at 17:50
@Keltex, the idea is that you want to remove it because it's been counted already. However, I believe it should be a List instead of a HashSet because it otherwise won't account for {a, a, a} - {a, a} = {a}. – chaiguy Feb 20 '11 at 17:57
No, it should be a Dictionary, so I'm still in a O(m * log(n)) (technically probably O((m + 1) * log(n)) ) – xanatos Feb 20 '11 at 18:03
feedback

Your Answer

 
or
required, but never shown

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