Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the complexity of OrderedDictionary?

No one said that OrderedDictionary is having two copies of elements, one in a hashtable and other in a list, I can't find complexity measurements at MSDN for OrderedList.

thanks

like image 793
Costa Avatar asked Apr 02 '10 07:04

Costa


1 Answers

Have a look at

OrderedDictionary: A generic implementation of IOrderedDictionary

This implementation of an ordered dictionary is very good at lookup operations: the array allows O(1) lookups by index, and the hashtable allows O(1) lookups by key. However, the necessity of keeping the array synchronized with the hashtable means that insert/delete operations have the performance disadvantage of performing those operations on an array (O(n) at worst). There is also, of course, the extra memory requirement of storing both data structures. Because of these disadvantages, OrderedDictionary should only be used when insert/delete operations will be minimal and there is a need to efficiently access elements by index and/or key.

like image 147
Adriaan Stander Avatar answered Oct 24 '22 14:10

Adriaan Stander