我在php中有一个关联数组。键是整数。如何找到任何整数输入的最近键?
答案 0 :(得分:1)
一种简单但强力的方法:
$distance = 1000000; // initialize distance as "far away"
foreach ($array as $idx => $value)
if (abs ($idx - $target_index) < $distance)
{
$distance = abs ($idx - $target_index);
$best_idx = $idx;
}
答案 1 :(得分:0)
如果数组键是有序的,你可以使用更有效的算法(根据它的用途和数组的大小,可能会或可能不会产生明显的差异):
$arr = [2 => 'a', 4 => 'b', 7 => 'c'];
$input = 5;
if (isset($arr[$input])) {
return $input;
}
foreach ($arr as $key => $value) {
if ($key > $input) {
if (prev($arr) === FALSE) {
// If the input is smaller than the first key
return $key;
}
$prevKey = key($arr);
if (abs($key - $input) < abs($prevKey - $input)) {
return $key;
} else {
return $prevKey;
}
}