Tagged Questions
12
votes
4answers
2k views
Asymptotic complexity of .NET collection classes
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 ...