开发者

Finding the index of a given value in a pre-sorted array

开发者 https://www.devze.com 2022-12-22 21:52 出处:网络
Today, I went for an interview and the interviewer asked me how I would find the index of a given value (number) in a pre-sorted array like this:

Today, I went for an interview and the interviewer asked me how I would find the index of a given value (number) in a pre-sorted array like this:

$preSortedArr=array(23,32,36,41,45,54);

He also said that using recursion is not allowed.

I think the function should look like this:

function 开发者_如何转开发findIndexByValue($preSortedArray,$value){            
//some codes here       
}

What solution do you think he was expecting from me?

EDIT: Sorry, I forgot to add that he originally asked me to write pseudocode, but I said I didn't know. Then I tried to write it in PHP, but I think he's expecting a language-independent solution.


Since he said the array was pre-sorted, he was probably expecting a binary search. A linear search (with a possible optimisation since the array is sorted - exit with failure if you find a larger value) would of course be perfectly fine on the small array in the example. Probably faster, if it matters.


He was likely looking for

  • array_search — Searches the array for a given value and returns the corresponding key if successful

EDIT The question is somewhat odd for the given array. There is no point in doing this with anything else than PHP's native function. An alternative would be to use while, next, key and current if you'd wanted to it by hand. This still wouldn't explain why the interviewer noted you may not use recursion.


$key = array_search("23", $array);


He probably was not looking for any specific answer. He probably wanted to see how you think and consider different options, and explaing their pros and cons, before choosing your way of implementing the thing.


The best approach is to use Binary search algorithm. Worst case complexity is o(logn)

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号