I was thinking about the performance of calling List<T>.Indexof(item). I am not sure if it will be a O(n) performance for a sequential algorithm or O(log(n)) performance for a binary tree??
Thanks!
|
I was thinking about the performance of calling Thanks! |
||||
|
|
|
Using Reflector for .NET we can see:
|
|||||||||||||||||
|
|
It's
|
|||
|
|
|
|
||||
|
|
|
Behind the scenes a regular |
|||
|
|
|
If you need a faster performer, consider (It's not exactly the same as a |
||||
|
|
|
This is a old question, but I thought this link would be interesting: Experiment: List internals and performance when adding new elements |
|||
|
|