I have a data in form a dictionary.. NOw I take the input from the user and it can be anything.. And I am trying to do the following. If the key exists then cool.. fetch the value from the dictionary. if not, then fetch the nearest (in numeric sense). For example..if the input key is 200 and the keys are like :....
197,202,208...
Then probably 202 is the closest key to 200.. Now, from algorithm point of view. its straight forward.. but is there a pythonic way to do this? Thanks
dict, or would a "dictionary-like" object suffice? If instead you use a binary tree or sorted list, then you can use binary search to find the closest key in O(log n) time. – Daniel Pryden Oct 28 '11 at 20:35