Which method of checking to see if a NSDictionary contains a particular key is faster?

A hash lookup should be faster in general than going over all the dictionary keys, creating an array from them (memory allocation is relatively expensive) and then searching the array (which can’t even be a binary search since the array is not sorted).

For the sake of science, though, I made two executables that just execute each style 1 million times and timed them.

With allKeys:

real    0m4.185s
user    0m3.890s
sys     0m0.252s

With objectForKey:

real    0m0.396s
user    0m0.189s
sys     0m0.029s

Obviously, various factors can influence this — size of the dictionary, caching the allKeys return value, etc. I wouldn’t expect there to be a case in which the array search is faster than the dictionary lookup, though.

Leave a Comment

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)