Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C# Is clearing a List<T> with value types still an O(n) operation?

According to the Microsoft documentation, calling Clear() on a List is an O(n) operation. I'm guessing this is because if the list were to hold references, it would need to null them. I was wondering if Clear() is still an O(n) operation if the list has value types, since the capacity is not changed. Shouldn't it be enough to reset the index pointer and count?

I'm asking this because in a current application we're using lists that get cleared hundreds of thousands of times in a very short time span, and wanted to know if there could be a different implementation that makes it faster.

like image 851
Hans Avatar asked Apr 25 '15 16:04

Hans


People also ask

What C is used for?

C programming language is a machine-independent programming language that is mainly used to create many types of applications and operating systems such as Windows, and other complicated programs such as the Oracle database, Git, Python interpreter, and games and is considered a programming foundation in the process of ...

What is the full name of C?

In the real sense it has no meaning or full form. It was developed by Dennis Ritchie and Ken Thompson at AT&T bell Lab. First, they used to call it as B language then later they made some improvement into it and renamed it as C and its superscript as C++ which was invented by Dr.

What is C in C language?

What is C? C is a general-purpose programming language created by Dennis Ritchie at the Bell Laboratories in 1972. It is a very popular language, despite being old. C is strongly associated with UNIX, as it was developed to write the UNIX operating system.

Is C language easy?

C is a general-purpose language that most programmers learn before moving on to more complex languages. From Unix and Windows to Tic Tac Toe and Photoshop, several of the most commonly used applications today have been built on C. It is easy to learn because: A simple syntax with only 32 keywords.


1 Answers

Inspecting in List.Clear method source code:

Array.Clear(_items, 0, _size);
_size = 0;

Array.Clear is an extern method and MSDN statement about Array.Clear is:

Sets a range of elements in an array to the default value of each element type.

So it is still an O(n) operation even if T is a value type.

like image 123
Mehrzad Chehraz Avatar answered Oct 17 '22 17:10

Mehrzad Chehraz