Are there any resources about the asymptotic complexity (big-O and the rest) of methods of .NET collection classes (Dictionary<K,V>, List<T> etc...)?

I know that the C5 library's documentation includes some information about it (example), but I'm interested in standard .NET collections too... (and PowerCollections' information would also be nice).

link|improve this question

79% accept rate
By complexity of a class, I'd consider the cyclomatic complexity rather than asymptotic time/space-complexity. I'd attribute the latter to the operations within a class. – pugmarx May 12 '09 at 10:13
feedback

4 Answers

up vote 13 down vote accepted

MSDN Lists these:

etc. For example:

The SortedList(TKey, TValue) generic class is a binary search tree with O(log n) retrieval, where n is the number of elements in the dictionary. In this, it is similar to the SortedDictionary(TKey, TValue) generic class. The two classes have similar object models, and both have O(log n) retrieval. Where the two classes differ is in memory use and speed of insertion and removal:

SortedList(TKey, TValue) uses less memory than SortedDictionary(TKey, TValue).

SortedDictionary(TKey, TValue) has faster insertion and removal operations for unsorted data, O(log n) as opposed to O(n) for SortedList(TKey, TValue).

If the list is populated all at once from sorted data, SortedList(TKey, TValue) is faster than SortedDictionary(TKey, TValue).

link|improve this answer
In this (old, deleted) quote a binary search tree is confused with a sorted array-based collection. en.wikipedia.org/wiki/Binary_search_tree – Stephan Eggermont May 27 '11 at 14:19
feedback

This page summarises some of the time comlplexities for various collection types with Java, though they should be exactly the same for .NET.

I've taken the tables from that page and altered/expanded them for the .NET framework. See also the MSDN pages for SortedDictionary and SortedList, which detail the time complexities required for various operations.


Searching

Type of Search/Collection Types           Complexity  Comments
Linear search Array/ArrayList/LinkedList  O(N)        Unsorted data.
Binary search sorted Array/ArrayList/     O(log N)    Requires sorted data.
Search Hashtable/Dictionary<T>            O(1)        Uses hash function.
Binary search SortedDictionary/SortedKey  O(log N)    Sorting is automated.

Retrieval and Insertion

Operation         Array/ArrayList  LinkedList  SortedDictionary  SortedList
Access back       O(1)             O(1)        O(log N)          O(log N)
Access front      O(1)             O(1)        N.A.              N.A.
Access middle     O(1)             O(N)        N.A.              N.A.
Insert at back    O(1)             O(1)        O(log N)          O(N)
Insert at front   O(N)             O(1)        N.A.              N.A.
Insert in middle  O(N)             O(1)        N.A.              N.A.

Deletion should have the same complexity as insertion for the associated collection.

SortedList has a few notable peculiarities for insertion and retrieval.

Insertion (Add method):

This method is an O(n) operation for unsorted data, where n is Count. It is an O(log n) operation if the new element is added at the end of the list. If insertion causes a resize, the operation is O(n).

Retrieval (Item property):

Retrieving the value of this property is an O(log n) operation, where n is Count. Setting the property is an O(log n) operation if the key is already in the SortedList<(Of <(TKey, TValue>)>). If the key is not in the list, setting the property is an O(n) operation for unsorted data, or O(log n) if the new element is added at the end of the list. If insertion causes a resize, the operation is O(n).

Note that ArrayList is equivalent to List<T> in terms of the complexity of all operations.


link|improve this answer
1  
Are you sure that the complexities should be the same for .NET? I would think it's more subtle than that - for example, there's a difference between SortedDictionary, SortedList and Hashtable in .NET. – Igor Brejc May 12 '09 at 11:04
Yeah, there's no fundamental difference - the basic algorithms and data structures are going to be virtually identical. I haven't detailed SortedDictionary/SortedList, but I'll add them in now. Hashtable ought to have the same complexities as Dictionary, I believe (it's pretty much a non-generic version of it). – Noldorin May 12 '09 at 11:25
feedback

There's no such thing as "complexity of collection classes". Rather, different operations on these collections have different complexities. For instance, adding an element to a Dictionary<K, V>...

...approaches an O(1) operation. If the capacity must be increased to accommodate the new element, this method becomes an O(n) operation, where n is Count.

Whereas retrieving an element from a Dictionary<K, V>...

...approaches an O(1) operation.

link|improve this answer
I meant their operations, I've edited the question to make it clearer. – Igor Brejc May 12 '09 at 10:58
feedback

The basic collection classes are all unusable in a 64-bit environment. They all either use too much memory or move too much memory when used with larger collection sizes. You need something like a BTree or Judy tree, working with multiple blocks of memory.

[edit] Voting down without making clear what you don't like doesn't make sense. I'm pretty sure everyone who has used >4G has noticed that the basic collections don't perform.

The array based ones don't because they move too much memory, and the binary tree based ones take too much memory per element and have bad cache behaviour

[edit2] Ok, so it is simply what you don't understand and have no practical experience with.

64-bit is relevant because I want to be able to do a time-space tradeoff. The basic collections don't allow me to do that. And Big-O is irrelevant when you don't know the constant, as memory is limited.

link|improve this answer
3  
I don't think your answer is relative to the question asked. The question was about the complexity of .NET collections, not about their memory usage. I don't see how 64bit has anything to do with the question either. – jrista May 23 '09 at 23:48
Asymptotic behaviour talks about large n. I fail to see how 64-bit is not the most relevant environment there. – Stephan Eggermont May 27 '11 at 14:02
1  
I would like to see evidence of your claims. Also, I don't believe 64bit is nesc for large n, for puropose for assymtopic testing. I beleive you can get plently large with the roughly 4 billion one byte variables (that you can refernce in 32 bit) for emperical asytopic testing (to see the trend on a graph). – Oxinabox Jun 19 '11 at 6:30
You are right. In a large 32-bit environment the basic collection classes are already practically unusable. You can test for yourself with an ArrayList filled with a few million objects by inserting a few objects at random positions. The smallest objects in .net are much larger than bytes, b.t.w. – Stephan Eggermont Jun 28 '11 at 14:54
feedback

Your Answer

 
or
required, but never shown

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