我需要一个可以执行以下操作的函数:
如果我有这样的字符串,"2 1 3 6 5 4 8 7"
我必须按照一些规则在成对的数字之间插入破折号。
规则很简单。
如果这对数字中的第一个小于后面的数字,则在两个数字之间放置一个破折号。做所有可能的组合,如果一对已经有破折号,那么它旁边的空间不能有破折号。
基本上我对上述字符串的结果是
2 1-3 6 5 4 8 7
2 1-3 6 5 4-8 7
2 1 3-6 5 4 8 7
2 1 3-6 5 4-8 7
2 1 3 6 5 4-8 7
我确实创建了一个执行此操作的函数,但我认为它非常缓慢,我不想用它来污染你的想法。如果可能的话,我想知道你们是如何考虑这个问题的,甚至一些伪代码或代码也会很棒。
编辑1:这是我到目前为止的代码
$string = "2 1 3 6 5 4 8 7";
function dasher($string){
global $dasherarray;
$lockcodes = explode(' ', $string);
for($i = 0; $i < count($lockcodes) - 1; $i++){
if(strlen($string) > 2){
$left = $lockcodes[$i];
$right = $lockcodes[$i+1];
$x = $left . ' ' . $right;
$y = $left . '-' . $right;
if (strlen($left) == 1 && strlen($right) == 1 && (int)$left < (int)$right) {
$dashercombination = str_replace($x, $y, $string);
$dasherarray[] = $dashercombination;
dasher($dashercombination);
}
}
}
return array_unique($dasherarray);
}
foreach(dasher($string) as $combination) {
echo $combination. '<br>';
}