当前位置: 移动技术网 > IT编程>开发语言>PHP > PHP输出多个元素的排列或组合的方法

PHP输出多个元素的排列或组合的方法

2017年12月12日  | 移动技术网IT编程  | 我要评论

实例如下:

<?php
$arr = array('a','b','c','d');
$result = array();
$t = getcombinationtostring($arr, 1);
print_r($t);
$t = getcombinationtostring($arr, 2);
$t2 = getunique($t);
print_r($t2);
$t = getcombinationtostring($arr, 3);
$t2 = getunique($t);
print_r($t2);
$t = getcombinationtostring($arr, 4);
$t2 = getunique($t);
print_r($t2);

function getunique($t){
	$t2 = array();
	//print_r($t);
	for($i=0;$i<count($t);$i++){
		$count_list = array_count_values($t[$i]);
		$flag = 1;
		foreach($count_list as $ck=>$cv){
			if($cv>1){
				$flag = 0;
				break;
			}
		}
		if($flag){
			sort($t[$i]);
			$flag2 = 1;
			if($t2){
				foreach($t2 as $t2k=>$t2v){
					if($t[$i]==$t2v){
						$flag2 = 0;
						break;
					}
				}
			}
			if($flag2){
				$t2[] = $t[$i];
			}
		}
	}
	return $t2;
}

function getcombinationtostring($arr, $m) {
	if ($m ==1) {
	 return $arr;
	}
	$result = array();
	
	$tmparr = $arr;
	unset($tmparr[0]);
	for($i=0;$i<count($arr);$i++) {
		$s = $arr[$i];
		$ret = getcombinationtostring(array_values($tmparr), ($m-1), $result);
		
		foreach($ret as $row) {
			//$result[] = $s . $row;
			$temp = array();
			$temp[] = $s;
			if(is_array($row)){
				$temp = array_merge($temp,$row);
			}else{
				$temp[] = $row;
			}
			sort($temp);
			$result[] = $temp;
		}
	}
 return $result;
}

?>

共15种排列结果。

以上这篇php输出多个元素的排列或组合的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持移动技术网。

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网