According to the MSDN documentation on the List<T>.Clear method:

This method is an O(n) operation, where n is Count.

Why O(n)? I ask because I would assume that clearing a List<T> could be accomplished simply by allocating a new T[] array internally. No other class could have a reference to this array, so I fail to see the harm in this approach.

Now, maybe this is a stupid question... is allocating a T[] array itself O(n)? For some reason I would not have thought so; but maybe it is (is my lack of a C.S. degree showing right now?). If so, I suppose that would explain it since, according to the same documentation quoted above, the capacity of the list remains unchanged, which means an array of equal size would need to be constructed.

(Then again, this doesn't seem like it could be the correct explanation, as then the documentation should have said "where n is Capacity"—not Count*).

I just suspect that this method, rather than allocating a new array, zeroes out all elements of the current one; and I'm curious to know why this would be.

*Hans Passant pointed out in a comment to LukeH's answer that the docs are correct. Clear only zeroes out the elements that have been set in the List<T>; it does not need to "re-zero" all the elements past those.

link|improve this question

74% accept rate
feedback

4 Answers

up vote 7 down vote accepted

As far as I'm aware the current implementation just calls Array.Clear on its internal T[] array, and Array.Clear is an O(n) process. (As Hans points out in the comments, the MSDN docs are correct that the n in this case is the list's Count, not its Capacity.)

But, even if it did just allocate a new T[] array internally, that would still be an O(n) process because allocating an array of size n involves initialising all n elements to their zero/null/default state.

Of course, there's nothing to stop some sort of internal trickery where the array could be initialised with length 0 or 42 or whatever and then auto-expanded again on-the-fly as required, amortising the overall O(n) cost.

link|improve this answer
Ha, oh right. Totally foolish of me to have neglected that fact (I did know that... or anyway, I thought I did)! – Dan Tao Jan 25 '11 at 21:21
1  
@LukeH, Dan Tao: But it doesn't have to allocate a new array of length n; it could just allocate an empty array. – Jason Jan 25 '11 at 21:23
@Luke: But wait: then since Capacity remains unchanged (according to the docs), shouldn't it be O(n) where n is Capacity? – Dan Tao Jan 25 '11 at 21:23
3  
It passes this._size to the Array.Clear() for the length argument. – Hans Passant Jan 25 '11 at 21:43
1  
@Dan: That level of accuracy is not what O(n) is meant for. The _size does indeed clear it up, but even a Clear(Capacity) would still be O(Count). O(n*C) == O(n) even if C = 10^10 – Henk Holterman Jan 25 '11 at 21:53
show 16 more comments
feedback

Because the implementation of List<T>.Clear() calls Array.Clear() on the list's backign array, and per the documentation that method sets all of the elements of that array to null.

I would guess that the reason why the existing array is cleared instead of a new one being created is that the .NET team determined that it was more efficient to clear an existing array instead of allocating a new one. Allocating a new array also takes time/memory so it's a tradeoff that tries to optimize for the common usage scenarios.

link|improve this answer
Could you offer any thoughts on why the implementation of List<T>.Clear calls Array.Clear, though? Memory savings? – Dan Tao Jan 25 '11 at 21:20
2  
Seems only half an answer. Why does it call Array.Clear() ? Ie is there some situation where that is useful? – Henk Holterman Jan 25 '11 at 21:22
2  
@Henk @Dan - it doesn't require any new allocations (presumably you intend to re-use the list if you are calling Clear), and it releases the current objects for garbage collection – Marc Gravell Jan 25 '11 at 21:26
@Marc: but the objects would be released for garbage collection anyway. As the OP points out, there would be no other references to the old array, so it could be GC'ed just fine. So unless there's more to it, it comes down to performing an O(n) operation to avoid an allocation. – jalf Jan 25 '11 at 21:30
1  
I had to give it some time - as @LukeH points out you have to zero the new one anyway, and Clear() is for when you want to keep Capacity. And the internal array might have been promoted to gen 1+, and then keeping it is cheaper than a new one. In gen 0 the costs would be about the same. – Henk Holterman Jan 25 '11 at 21:32
show 2 more comments
feedback

List<T> lists hold some objects. Allocating a new List<T> does not get rid of the objects in the old list, hence it is not a clear operation.

The operation clear does a linear one-time pass through the list, clearing all the elements one by one. Since there are n elements, this takes O(n) time.

Allocating a T[] depends on whether a size is specified. If a size is specified, then memory has to be set aside for each element, or at least each pointer for that element. Thus that would take O(n). However, if we're simply initializing a pointer for T[], that would take O(1) time.

P.S. CS degree does not automatically mean you know (or remember) this stuff... sad, but, true. Lack of CS degree is not detrimental at all.

link|improve this answer
"Allocating a new List<T> does not get rid of the objects ..." - Yes it does. By dropping the old list the refs to the elements are lost. – Henk Holterman Jan 25 '11 at 21:26
Are the memory locations cleared, too? – aqua Jan 25 '11 at 21:49
1  
If there were no other references to those objects, then they'd be GC'd. If there were references, that's another story. But either way allocating a new array would achieve the same effect as zeroing out the elements. – Dan Tao Jan 25 '11 at 21:52
feedback

List<T>.Clear() calls Array.Clear() as seen here:

public virtual void Clear()
{
    if (this._size > 0)
    {
        Array.Clear(this._items, 0, this._size);
        this._size = 0;
    }
    this._version++;
}

In turn, Array.Clear() calls down to an external function which will zero the elements of the array which is O(n):

[MethodImpl(MethodImplOptions.InternalCall), SecuritySafeCritical, ReliabilityContract(Consistency.WillNotCorruptState, Cer.Success)]
public static extern void Clear(Array array, int index, int length);
link|improve this answer
Array.Clear does not initialize a new array. It zeroes out the elements. – Dan Tao Jan 25 '11 at 21:39
feedback

Your Answer

 
or
required, but never shown

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