vote up 4 vote down star
1

So I got asked today what was the best way to find the closes match within a collection.

For example, you've got an array like this:

1, 3, 8, 10, 13, ...

What number is closest to 4?

Collection is numerical, unordered and can be anything. Same with the number to match.

Lets see what we can come up with, from the various languages of choice.

flag

22 Answers

vote up 7 vote down check

11 bytes in J:

C=:0{]/:|@-

Examples:

>> a =: 1 3 8 10 13
>> 4 C a
3
>> 11 C a
10
>> 12 C a
13

my breakdown for the layman:

0{         First element of
]          the right argument
/:         sorted by
|          absolute value 
@          of
-          subtraction
link|flag
down to 11 bytes now... that explicit @-chain and parentheses was bothering me. – Jimmy Jan 16 at 16:03
vote up 3 vote down

Assuming that the values start in a table called T with a column called N, and we are looking for the value 4 then in Oracle SQL it takes 59 characters:

select*from(select*from t order by abs(n-4))where rownum=1

I've used select * to reduce the whitespace requirements.

link|flag
is there no "select top 1 * from t order by abs(n-4)" type syntax in Oracle? – Jimmy Jan 16 at 3:47
@Jimmy: Afraid not. Have to use the stupid rownum hack or analytics. Maybe a shorter version of this using analytics actually – WW Jan 16 at 5:37
vote up 3 vote down

My attempt in python:

def closest(target, collection) :
    return min((abs(target - i), i) for i in collection)[1]
link|flag
vote up 2 vote down

Groovy 28B

f={a,n->a.min{(it-n).abs()}}
link|flag
vote up 2 vote down

Some C# Linq ones... too many ways to do this!

decimal[] nums = { 1, 3, 8, 12 };
decimal target = 4;

var close1 = (from n in nums orderby Math.Abs(n-target) select n).First();
var close2 = nums.OrderBy(n => Math.Abs(n - target)).First();

Console.WriteLine("{0} and {1}", close1, close2);

Even more ways if you use a list instead, since plain ol arrays have no .Sort()

link|flag
vote up 1 vote down

Haskell entry (tested):

import Data.List

near4 = head . sortBy (\n1 n2 -> abs (n1-4) `compare` abs (n2-4))

Sorts the list by putting numbers closer to 4 near the the front. head takes the first element (closest to 4).

link|flag
vote up 1 vote down

Ruby

def c(r,t)
r.sort{|a,b|(a-t).abs<=>(b-t).abs}[0]
end

Not the most efficient method, but pretty short.

link|flag
vote up 1 vote down

returns only one number:

var arr = new int[] { 1, 3, 8, 10, 13 };
int numToMatch = 4;

Console.WriteLine("{0}", 
   arr.OrderBy(n => Math.Abs(numToMatch - n)).ElementAt(0));
link|flag
vote up 1 vote down

Language: C, Char count: 79

c(int v,int*a,int A){int n=*a;for(;--A;++a)n=abs(v-*a)<abs(v-n)?*a:n;return n;}

Signature:

int closest(int value, int *array, int array_size);

Usage:

main()
{
    int a[5] = {1, 3, 8, 10, 13};
    printf("%d\n", c(4, a, 5));
}
link|flag
I like this one since unlike many of the others it does not involve a sort. It is just O(n) – ScottD Jul 8 at 5:04
vote up 1 vote down

PostgreSQL:

select n from tbl order by abs(4 - n) limit 1
link|flag
vote up 1 vote down

Shorter Python: 41 chars

f=lambda a,l:min(l,key=lambda x:abs(x-a))
link|flag
vote up 1 vote down

Because I actually needed to do this, here is my PHP

$match = 33;

$set = array(1,2,3,5,8,13,21,34,55,89,144,233,377,610);

foreach ($set as $fib)
    {
    	$diff[$fib] = (int) abs($match - $fib);
    }
$fibs = array_flip($diff);
$closest = $fibs[min($diff)];

echo $closest;
link|flag
vote up 1 vote down

EDITED = in the for loop

int Closest(int val, int[] arr)
{
    int index = 0;
    for (int i = 0; i < arr.Length; i++)
    	if (Math.Abs(arr[i] - val) < Math.Abs(arr[index] - val))
    		index = i;
    return arr[index];
}
link|flag
Instead of computing Math.Abs(arr[index] - val)) every time through the loop you should pull it out into a variable. – Allain Lalonde Jan 15 at 5:59
I think you need a '<' instead if '=', in your loop. – Vinegar Jan 15 at 6:16
ok, ok, you got me...i typed it up in notepad. – Al W Jan 15 at 6:33
vote up 0 vote down
int numberToMatch = 4;

var closestMatches = new List<int>();
closestMatches.Add(arr[0]); // closest tentatively

int closestDifference = Math.Abs(numberToMatch - arr[0]);


for(int i = 1; i < arr.Length; i++)
{
	int difference = Math.Abs(numberToMatch - arr[i]);
	if (difference < closestDifference)
	{
		closestMatches.Clear();
		closestMatches.Add(arr[i]);
		closestDifference = difference;
	}
	else if (difference == closestDifference)
	{		
		closestMatches.Add(arr[i]);
	}
}


Console.WriteLine("Closest Matches");
foreach(int x in closestMatches) Console.WriteLine("{0}", x);
link|flag
vote up 0 vote down

Some of you don't seem to be reading that the list is unordered (although with the example as it is I can understand your confusion). In Java:

public int closest(int needle, int haystack[]) { // yes i've been doing PHP lately
  assert haystack != null;
  assert haystack.length; > 0;
  int ret = haystack[0];
  int diff = Math.abs(ret - needle);
  for (int i=1; i<haystack.length; i++) {
    if (ret != haystack[i]) {
      int newdiff = Math.abs(haystack[i] - needle);
      if (newdiff < diff) {
        ret = haystack[i];
        diff = newdiff;
      }
    }
  }
  return ret;
}

Not exactly terse but hey its Java.

link|flag
You can ditch this, can't you: if (haystack.length > 1) – WW Jan 15 at 6:31
Yeah I can actually. – cletus Jan 15 at 6:38
vote up 0 vote down

returns only one number:

var arr = new int[] { 1, 3, 8, 10, 13 };
int numToMatch = 4;
Console.WriteLine("{0}", 
     arr.Select(n => new{n, diff = Math.Abs(numToMatch - n) }).OrderBy(x => x.diff).ElementAt(0).n);
link|flag
vote up 0 vote down

Common Lisp using iterate library.

(defun closest-match (list n)
     (iter (for i in list)
            (finding i minimizing (abs (- i n)))
link|flag
vote up 0 vote down

Perl -- 66 chars:

perl -e 'for(qw/1 3 8 10 13/){$d=($_-4)**2; $c=$_ if not $x or $d<$x;$x=$d;}print $c;'
link|flag
vote up 0 vote down

Scala (62 chars), based on the idea of the J and Ruby solutions:

def c(l:List[Int],n:Int)=l.sort((a,b)=>(a-n).abs<(b-n).abs)(0)

Usage:

println(c(List(1,3,8,10,13),4))
link|flag
vote up 0 vote down

41 characters in F#:

let C x = Seq.min_by (fun n -> abs(n-x))

as in

#light

let l = [1;3;8;10;13]

let C x = Seq.min_by (fun n -> abs(n-x))

printfn "%d" (C 4 l)   // 3 
printfn "%d" (C 11 l)  // 10
printfn "%d" (C 12 l)  // 13
link|flag
vote up 0 vote down

Ruby like Python has a min method for Enumerable so you don't need to do a sort.

def c(value, t_array)
  t_array.min{|a,b|  (value-a).abs <=> (value-b).abs }
end

ar = [1, 3, 8, 10, 13]
t = 4
c(t) = 3
link|flag
vote up 0 vote down

Ruby. One pass-through. Handles negative numbers nicely. Perhaps not very short, but certainly pretty.

class Array
  def closest int
    diff = int-self[0]; best = self[0]
    each {|i|
      if (int-i).abs < diff.abs
        best = i; diff = int-i
      end
    }
    best
  end
end

puts [1,3,8,10,13].closest 4
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.