Which is the best way to find if a key exists in C# SortedList?

The question is quite clear, I have a SortedList represents an associated array. Both key and values are string. I'm thinking of scanning linear but binary search is faster coz it's 'Sorted'.

I wonder if there's a standard way to find the pair by key, like noted in MSDN or some where popular?

link|improve this question

Off topic: I don't understand your usage of SortedList (list-type collection) for doing lookups. If non-unique keys are requirement, have you investigated Lookup class? msdn.microsoft.com/en-us/library/bb460184(v=VS.90).aspx – Neil Sep 11 '11 at 13:53
just a habit, i don't know why i like SortedList than other Dictioanry... generic... etc. – Paul Dinh Sep 11 '11 at 15:13
feedback

1 Answer

up vote 3 down vote accepted

ContainsKey is the best way to find out if a key exists. It is already optimized, there is no need for you to make a custom search algorithm:

"This method uses a binary search algorithm; therefore, this method is an O(log n) operation, where n is Count."

link|improve this answer
sounds clearer than 'Contains', coz 'Contains' is quite confusing "key or value?". although as i've just read in msdn, they behave exactly the same :) tks :) – Paul Dinh Sep 11 '11 at 13:51
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.