I'm prepping for interviews, and some obvious interview questions such as counting frequency of characters in a string involve putting all of the characters into a Hashtable/Dictionary in order to get O(n) runtime for the algorithm. My question is, what is the performance hit by using ContainsKey and TryGetValue to check to see if a key has already been inserted into the Hashtable? Can I still have an O(n) algorithm for problems like these that use ContainsKey or TryGetValue?

link|improve this question

feedback

1 Answer

up vote 5 down vote accepted

Assuming a good hash without too many collisions, each of those are O(1) operations.

As for how those operations work... I suggest you read up on hash tables.

link|improve this answer
@alexD -- remember, it's O(1) in the optimal case. A hashtable with the world's worst hashing algorithm will put every item in a single linked-list bucket or similar, and approach O(N) as it sorts through the duplicates. :) – Joe Aug 4 '11 at 23:58
feedback

Your Answer

 
or
required, but never shown

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