I was asked this question recently in an interview :
What is the most efficient way to find a repeated number in a sorted array?
My answer was based on using a hash table with key as array element and number of repetitions in array as value; iterate the array and update hash table. In the end, hash table can be checked for elements with count > 1 ; those are the repeated elements.
Is there a better way to do this ?
Thanks.
a[i]-a[0]<i. Otherwise you have to search along the array fora[i]==a[i+1], getting O(n) time. You're asked for "a number" so just one will do. – Will Ness May 29 '12 at 6:04