如何在java中查找数组的所有子集?

时间:2015-04-28 12:42:39

标签: java arrays dynamic set

我需要使用java.For找到数组的所有子集。如果我们有一套{1,2,3}那么我应该得到 {},{1},{2},{3},{1,2},{2,3},{1.3},{1,2,3}

1 个答案:

答案 0 :(得分:0)

您可以这样做,以避免需要递归解决方案。

public static <T> void printCombinations(T[] arr) {
    for(long i = 0, max = 1L << arr.length; i < max; i++) {
        Set<T> ts = new HashSet<>();
        for(int j = 0; j < arr.length; j++) {
            if ((i >> j) != 0)
                ts.add(list.get(j));
        }
        System.out.println(ts);
    }
}