您好我正在尝试构建一个函数,该函数将遍历所有可能的数字序列并将序列传递给函数,如果它返回true则停止。
这是标记:
function sequences($smallest, $biggest, $long, $func) {
$seq = array(); // Will have $long values
/*
* generates the sequence
*/
if (call_user_func($functions[$func])) {
return $seq;
} else {
//generate next sequence.
}
}
生成的序列在$long
整数到$smallest
整数之间将具有$biggest
唯一值,并且必须按照示例进行排序:
/* $long = 4; $smallest = 5, $biggest = 10;
*
* 5,6,7,8
* 5,6,7,9
* 5,6,7,10
* 5,6,8,9
* 5,6,8,10
* ...
* 7,8,9,10
*
*
* $long = 4; $smallest = 15, $biggest = 60;
*
* ...
* 15,41,49,56
* ...
* 37,39,53,60
* ...
*/
我无法绕过它,到目前为止,我实现的唯一方法是随机生成数字,而不是每次都对数组进行排序。 这显然不是最好的方式。
其他编程语言也很棒(c ++,C#,js,java)。
注意
答案 0 :(得分:1)
按照您的指定生成序列是一个有趣的挑战。
下面这段代码应该做你想要的(我想)。或者至少你应该能够根据自己的需要进行修改。我不确定你是否希望sequences()
函数只返回测试函数$functions[$func]
返回true
的第一个序列,或者到目前为止所有序列。在这个例子中只有第一个"匹配"返回(如果未找到匹配,则返回null
。)
此代码需要PHP 5.5+,因为它使用generator函数(以及PHP 5.4+中提供的短数组语法)。我在PHP 5.5.12上测试了它,它似乎按预期工作。如果需要,可以修改代码以在较旧的PHP版本上工作(只是避免使用生成器/产量)。实际上这是我第一次编写PHP生成器函数。
sequenceGenerator()
是一个递归生成器函数,您可以使用foreach
进行迭代。
我还编写了一个echoSequences()
函数来测试序列生成,它只是按顺序输出所有生成的序列。
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';
}