Could anyone explain me why the generics list's Contains() function is so slow?
I have a List with about a million numbers, and the code that is constantly checking if there's a specific number within these numbers.
I tried doing the same thing using Dictionary and the ContainsKey() function, and it was about 10-20 times faster than with the List.
Of course, I don't really want to use Dictionary for that purpose, because it wasn't meant to be used that way.
So, the real question here is, is there any alternative to the List.Contains(), but not as whacky as Dictionary.ContainsKey() ?
Thanks in advance!
|
|
|||||||||||
|
|
If you are just checking for existance,
|
|||||
|
|
List.Contains is a O(n) operation. Dictionary.ContainsKey is a O(1) operation, since it uses the hashcode of the objects as a key, which gives you a quicker search ability. I don't think that it 's a good idea to have a List which contains a million entries. I don't think that the List class was designed for that purpose. :) Isn't it possible to save those millon entities into a RDBMS for instance, and perform queries on that database ? If it is not possible, then I would use a Dictionary anyway. |
|||||||||||
|
|
Dictionary isn't that bad, because the keys in a dictionary are designed to be found fast. To find a number in a list it needs to iterate through the whole list. Of course the dictionary only works if your numbers are unique and not ordered. I think there is also a |
|||
|
|
A SortedList will be faster to search (but slower to insert items) |
|||
|
|
|
Why is a dictionary inappropriate? To see if a particular value is in the list you need to walk the entire list. With a dictionary (or other hash based container) it's much quicker to narrow down the number of objects you need to compare against. The key (in your case, the number) is hashed and that gives the dictionary the fractional subset of objects to compare against. |
|||
|
|
|
I'm using this in the Compact Framework where there is no support for HashSet, I have opted for a Dictionary where both strings are the value I am looking for. It means I get list<> functionality with dictionary performance. It's a bit hacky, but it works. |
|||||
|
|
This is what I was looking for, a Hashset. Dictionary may not be a good choice in my case as I dont have any values to fill and I was thinking that if I use dictionary I would be wasting some memory by filling the dictionary with some default values for all the values. I am not sure though (dint get much information from http://msdn.microsoft.com/en-us/library/bb359438.aspx on Hashset Internals) on how the Hashset is implemented. Some stackoverflow wisdom here? |
|||
|
|
|
This is not exactly an answer to your question, but I have a class that increases the performance of Contains() on a collection. I subclassed a Queue and added a Dictionary that maps hashcodes to lists of objects. The The value-type of the dictionary is a queue holding objects with the same hashcode. The caller can supply a custom class object that implements IEqualityComparer. You could use this pattern for Stacks or Lists. The code would need just a few changes.
My simple testing shows that my Here's my testing code:
|
|||
|
|
