-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathreorder_array.php
65 lines (58 loc) · 1.28 KB
/
reorder_array.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<?php
/**
* 调整数组使偶数位于奇数后面
* Author:学院君
*/
/**
* 根据指定闭包条件调整数组排序
* @param array $input
* @param callable $func
* @return array
*/
function reOrderArray(array $input, callable $func): array
{
if (empty($input) || count($input) == 1) {
return $input;
}
$i = 0;
$j = count($input) - 1;
while ($i < $j) {
while ($i < $j && !call_user_func($func, $input[$i])) {
$i++;
}
while ($i < $j && call_user_func($func, $input[$j])) {
$j--;
}
if ($i < $j) {
$temp = $input[$i];
$input[$i] = $input[$j];
$input[$j] = $temp;
}
}
return $input;
}
/**
* 是否是偶数
* @param int $n
* @return bool
*/
$isEven = function(int $n)
{
return ($n & 1) == 0;
};
/**
* 是否是负数
* @param int $n
* @return bool
*/
$isNegative = function(int $n): bool
{
return $n < 0;
};
// 测试代码
$input = [1, 2, 3, 4, 5, 6, 7, 8, 9];
$output = reOrderArray($input, $isEven);
var_dump('[' . implode(',', $output) . ']'); // [1,9,3,7,5,6,4,8,2]
$input = [1, 2, -3, 4, -5, -6, 7, -8, 9];
$output = reOrderArray($input, $isNegative);
var_dump('[' . implode(',', $output) . ']'); // [1,2,9,4,7,-6,-5,-8,-3]