使用php构建概率树?

时间:2012-09-25 12:10:17

标签: php tree probability

  

可能重复:
  Permutations - all possible sets of numbers

我有一个包含选项列表的数组, 每个选项都是唯一的,不能重复。

我想使用这些选项构建概率树:

$options = array('1','2','3','4','A','E','I','O');

因此,一个有效行可以是1-2-E-3-O-I-4-A

我该怎么做? (或者至少指出我正确的方向!)

2 个答案:

答案 0 :(得分:0)

递归可能是实现此目的最简单的方法,但它不能很好地扩展到大型数据集。

基本上编写一个带有一系列选项的函数,从一个调用本身中删除一个。

答案 1 :(得分:0)

<?php

function pc_permute($items, $perms = array( )) {
    if (empty($items)) { 
        print join('-', $perms) . "<br />";
    }  else {
        for ($i = count($items) - 1; $i >= 0; --$i) {
            $newitems = $items;
            $newperms = $perms;
            list($foo) = array_splice($newitems, $i, 1);
            array_unshift($newperms, $foo);
            pc_permute($newitems, $newperms);
        }
    }
}

$options = array( '1','2','3','4','A','E','I','O' );
$mass = pc_permute( $options );

?>