Say I got a set of 10 random numbers between 0 and 100.
An operator gives me also a random number between 0 and 100. Then I got to find the number in the set that is the closest from the number the operator gave me.
example
set = {1,10,34,39,69,89,94,96,98,100}
operator number = 45
return = 39
And how do translate this into code? (javascript or something)
How about this:
1) Put the set into a binary tree.
2) Insert the operator number into the tree
3) Return the Operators parent
if set is ordered, do a binary search to find the value, (or the 2 values) that are closest. Then distinguish which of 2 is closest by ... subtracting?
If set is not ordered, just iterate through the set, (Sorting it would itself take more than one pass), and for each member, check to see if the difference is smaller than the smallest difference you have seen so far, and if it is, record it as the new smallest difference, and that number as the new candidate answer. .
input
, create another array of the same sizeMath.abs(input[i] - operatorNumber)
k
)input[k]
NB
Sample implementation in JavaScript
Someone tagged this question Mathematica, so here's a Mathematica answer:
It works when there are multiple elements of set equally distant from the operator number.
python example: