生成您指定的序列是一个有趣的挑战。
下面的代码应该做你想做的(我认为)。或者至少你应该能够修改它以满足你的需要。我不确定您是否希望该sequences()
函数仅返回测试函数$functions[$func]
返回的第一个序列true
,或者到目前为止的所有序列。在此示例中,仅返回第一个“匹配项”(或者null
如果未找到匹配项)。
此代码需要 PHP 5.5+,因为它使用生成器函数(以及 PHP 5.4+ 中可用的短数组语法)。我在 PHP 5.5.12 上对此进行了测试,它似乎按预期工作。如果需要,可以修改代码以在较旧的 PHP 版本上工作(只是避免使用生成器/产量)。实际上这是我第一次编写 PHP 生成器函数。
sequenceGenerator()
是一个递归生成器函数,您可以使用foreach
.
我还编写了一个echoSequences()
用于测试序列生成的函数,它使用 echo 按顺序输出所有生成的序列。
function sequenceGenerator(array $items, $long = null, $level = 1, $path = null) {
$itemCount = count($items);
if (empty($long)) $long = $itemCount;
if ($path == null) $path = [];
if ($itemCount > 1) {
foreach ($items as $item) {
$subPath = $path;
$subPath[] = $item;
if ($level == $long) {
yield $subPath;
continue;
}
if (count($subPath) + count($items) > $long) {
$items = array_values(array_diff($items, [$item]));
$iteration = sequenceGenerator($items, $long, $level + 1, $subPath);
foreach ($iteration as $value) yield $value;
}
}
} elseif ($itemCount == 1) {
$path[] = $items[0];
yield $path;
}
}
// Function for testing sequence generation
function echoSequences($smallest, $biggest, $long) {
$items = range($smallest, $biggest);
foreach (sequenceGenerator($items, $long) as $sequence) {
echo implode(',', $sequence)."<br>\n";
}
}
function sequences($smallest, $biggest, $long, $func) {
global $functions;
$items = range($smallest, $biggest);
foreach (sequenceGenerator($items, $long) as $sequence) {
if (call_user_func($functions[$func], $sequence)) {
return $sequence;
}
}
return null; // Return null when $func didn't return true for any sequence
}
//echoSequences(5, 10, 4); // Test sequence generation
$functions = array(
// This test function returns true only for the sequence [5,6,8,10]
'testfunc' => function($sequence) { return ($sequence == [5,6,8,10]); }
);
$sequence = sequences(5, 10, 4, 'testfunc'); // Find the first sequence that 'testfunc' will return true for (or null)
if (!empty($sequence)) {
echo 'Found match: '.implode(',', $sequence);
} else {
echo 'Match not found';
}