vote up 1 vote down star
1

I have a List (Foo) and I want to see if it's equal to another List (foo). What is the fastest way ?

flag

5 Answers

vote up 9 vote down check

Here are the steps I would do:

  1. Do an object.ReferenceEquals() if true, then return true.
  2. Check the count, if not the same, return false.
  3. Compare the elements one by one.

Here are some suggestions for the method:

  1. Base the implementation on ICollection. This gives you the count, but doesn't restrict to specific collection type or contained type.
  2. You can implement the method as an extension method to ICollection.
  3. You will need to use the .Equals() for comparing the elements of the list.
link|flag
vote up 0 vote down

Assuming you mean that you want to know if the CONTENTS are equal (not just the list's object reference.)

If you will be doing the equality check much more often than inserts then you may find it more efficient to generate a hashcode each time a value is inserted and compare hashcodes when doing the equality check. Note that you should consider if order is important or just that the lists have identical contents in any order.

Unless you are comparing very often I think this would usually be a waste.

link|flag
vote up 5 vote down

From 3.5 onwards you may use a LINQ function for this:

List<string> l1 = new List<string> {"Hello", "World","How","Are","You"};
List<string> l2 = new List<string> {"Hello","World","How","Are","You"};
Console.WriteLine(l1.SequenceEqual(l2));

It also knows an overload to provide your own comparer

link|flag
" That's hot! " – frou Jun 19 at 16:38
vote up 0 vote down

Something like this maybe using Match Action.

public static CompareList<T>(IList<T> obj1, IList<T> obj2, Action<T,T> match)
{
   if (obj1.Count != obj2.Count) return false;
   for (int i = 0; i < obj1.Count; i++)
   {
     if (obj2[i] != null && !match(obj1[i], obj2[i]))
       return false;
   }
}
link|flag
It already exist IComparer (msdn.microsoft.com/en-us/library/…) and Comparison<T> (msdn.microsoft.com/en-us/library/…). You can't use Action<T, T> because it returns void. – Fabrizio C. Jan 4 '09 at 17:56
I'm sorry: IComparer<T> is at msdn.microsoft.com/en-us/library/… . – Fabrizio C. Jan 4 '09 at 18:03
vote up 1 vote down

Something like this:

public static bool CompareLists(List<int> l1, List<int> l2)
{
	if (l1 == l2) return true;
	if (l1.Count != l2.Count) return false;
	for (int i=0; i<l1.Count; i++)
		if (l1[i] != l2[i]) return false;
	return true;
}

Some additional error checking (e.g. null-checks) might be required.

link|flag
You could also make it "more generic" and also use a "comparer" instead of "!=". – Fabrizio C. Jan 4 '09 at 17:25

Your Answer

Get an OpenID
or

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