Tuesday, April 21, 2020

Efficient Use of Dictionary using custom data type


 Note
The speed of retrieval depends on the quality of the hashing algorithm of the type specified for TKey.

Dictionary generic class provides a mapping from a set of keys to a set of values. Each addition to the dictionary consists of a value and its associated key. Retrieving a value by using its key is very fast, close to O(1), because the Dictionary class is implemented as a hash table.



No comments :