java从分组元素生成powerset排列

时间:2015-05-30 10:40:16

标签: java recursion permutation powerset

我有一组N组,每组包含可变数量的元素。我想要一个函数,它将返回所有元素的所有可能的排列(长度为1到N),其中每个组中只有一个元素可以出现在任何排列中。

例如,考虑两组{A, B}{C, D, E}
然后我想返回以下列表:

{A}, {B}, {C}, {D}, {E},
{AC}, {AD}, {AE}, {BC}, {BD}, {BE}, {CA}, {CB}, {DA}, {DB}, {EA}, {EB}

我尝试编写一个递归函数,但我似乎无法使它工作......这就是我到目前为止所拥有的。任何帮助它的工作将非常感激。

public class Test {
    public static void main(String[] args) {

        List<String> g1 = new ArrayList<String>();
        g1.add("a");
        g1.add("b");
        List<String> g2 = new ArrayList<String>();
        g2.add("c");
        g2.add("d");
        g2.add("e");
        List<List<String>> groups = new ArrayList<List<String>>();
        groups.add(g1);
        groups.add(g2);
        int size = 2;

        List<List<String>> perms = generatePermutations(groups, size);
        System.out.println(perms.size());

    }

    private static List<List<String>> generatePermutations(List<List<String>> groups, int size) {
        List<List<String>> permutations = new ArrayList<List<String>>();
        if ( groups.size() == 0 ) {
            return permutations;
        }
        int n = groups.size();
        for ( int i=0; i<n; i++ ) {
            List<List<String>> otherGroups = new ArrayList<List<String>>(groups);
            otherGroups.remove(i);
            for ( int j=0; j<groups.get(i).size(); j++ ) {
                String aKey = groups.get(i).get(j);
                for ( List<String> subPerm : generatePermutations(otherGroups, size - 1) ) {
                    List<String> newList = new ArrayList<String>();
                    newList.add(aKey);
                    newList.addAll(subPerm);
                    permutations.add(newList);
                }
            }
        }
        return permutations;
    }
}

2 个答案:

答案 0 :(得分:0)

当我必须解决这些问题时,我总是尝试将它们分成较小的任务,每个任务都会导致一个不同的方法调用,而不是从一开始就使用很多内部循环。

我会做这样的事情

public class Main {

    public static void main(String[] args) {
        char[] x={'A','B'},y={'C','D','E'},z={'F','G','H','I'};
        char[][]group={x,y,z};
        perm(group);
    }

    static void perm(char[][]g){
        // Reorganize "g" changing the order of the components (x, y and z in this case)
        // in all possible ways and call perm2().
        // Here you perform the "upper level" permutation between sets.
        // In this case it will result in 6 calls
            perm2(g);
    }

    static void perm2(char[][]g){
        // perform a "lower level" permutation on the given order of x, y, z
    }

}

更容易测试和验证。最终,当您找到解决方案时,您可以考虑在一个具有多个内循环的方法中“压缩”解决方案。

希望它有所帮助!

答案 1 :(得分:0)

也许我误解了这个问题......但我认为问题有点复杂。我想帮助,但我需要更好地理解问题。如果我理解得恰到好处,你需要:

找到“套装”中的“套装”。作为输入:

{A,B} {C,D,E} --> {} {A,B} {C,D,E} {{A,B},{C,D,E}}

然后,计算powerset的每个成员的笛卡尔积:

{} {A,B} {C,D,E} {{A,B},{C,D,E}} --> {} {A,B} {C,D,E} {AC,AD,AE,BC,BD,BE}

然后计算得到的集合内容的排列:

{} {A,B} {C,D,E} {AC,AD,AE,BC,BD,BE} --> {} {A,B} {C,D,E} {AC,AD,AE,BC,BD,BE,CA,DA,EA,CB,DB,EB}

最后,所有套装都将被压平&#39;在一套:

{A,B,C,D,EAC,AD,AE,BC,BD,BE,CA,DA,EA,CB,DB,EB}
是吗?是这样吗?有一些方法可以递归地计算powerset,笛卡尔积和置换。